fix(registry): correct words in registry page and other places EE-4894 (#8356)

pull/8436/merge
matias-portainer 2023-02-16 10:31:08 -03:00 committed by GitHub
parent 5a375ff055
commit 89dd72b4ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 14 deletions

View File

@ -25,7 +25,7 @@ Each commit message should include a **type**, a **scope** and a **subject**:
<type>(<scope>): <subject>
```
Lines should not exceed 100 characters. This allows the message to be easier to read on github as well as in various git tools and produces a nice, neat commit log ie:
Lines should not exceed 100 characters. This allows the message to be easier to read on GitHub as well as in various git tools and produces a nice, neat commit log ie:
```
#271 feat(containers): add exposed ports in the containers view
@ -63,7 +63,7 @@ The subject contains succinct description of the change:
## Contribution process
Our contribution process is described below. Some of the steps can be visualized inside Github via specific `status/` labels, such as `status/1-functional-review` or `status/2-technical-review`.
Our contribution process is described below. Some of the steps can be visualized inside GitHub via specific `status/` labels, such as `status/1-functional-review` or `status/2-technical-review`.
### Bug report

View File

@ -3,12 +3,12 @@
<div class="form-group">
<span class="col-sm-12 text-muted small">
<p>
For information on how to generate a Gitlab Personal Access Token, follow the
<a href="https://gitlab.com/help/user/profile/personal_access_tokens.md" target="_blank">gitlab guide</a>.
For information on how to generate a GitLab Personal Access Token, follow the
<a href="https://gitlab.com/help/user/profile/personal_access_tokens.md" target="_blank">GitLab guide</a>.
</p>
</span>
</div>
<div class="col-sm-12 form-section-title"> Gitlab registry connection details </div>
<div class="col-sm-12 form-section-title"> GitLab registry connection details </div>
<!-- credentials-user -->
<div class="form-group">
<label for="registry_username" class="col-sm-3 col-lg-2 control-label required text-left">Username</label>
@ -122,7 +122,7 @@
</div>
</form>
<div class="form-horizontal" ng-if="$ctrl.projects">
<div class="col-sm-12 form-section-title"> Gitlab projects </div>
<div class="col-sm-12 form-section-title"> GitLab projects </div>
<div class="form-group">
<span class="col-sm-12 text-muted small"> Select the project's registries you want to manage. Portainer will create one registry for each selected project. </span>
<span class="col-sm-12 text-muted small vertical-center">
@ -133,7 +133,7 @@
<div class="form-group">
<div class="col-sm-12">
<gitlab-projects-datatable
title-text="Gitlab projects"
title-text="GitLab projects"
title-icon="list"
dataset="$ctrl.projects"
table-key="gitlab_projects"

View File

@ -63,7 +63,7 @@
<div class="form-group">
<div class="col-sm-12">
<por-switch-field
label="'Use organisation registry'"
label="'Use organization registry'"
checked="$ctrl.model.Quay.useOrganisation"
on-change="($ctrl.toggleOrganisation)"
label-class="'col-sm-2'"
@ -74,7 +74,7 @@
<div ng-if="$ctrl.model.Quay.useOrganisation">
<!-- organisation_name -->
<div class="form-group">
<label for="organisation_name" class="col-sm-3 col-lg-2 control-label required text-left">Organisation name</label>
<label for="organisation_name" class="col-sm-3 col-lg-2 control-label required text-left">Organization name</label>
<div class="col-sm-9 col-lg-10">
<input type="text" class="form-control" id="organisation_name" name="organisation_name" ng-model="$ctrl.model.Quay.organisationName" required />
<div class="help-block" ng-show="$ctrl.registryFormQuay.organisation_name.$invalid">

View File

@ -32,7 +32,7 @@
</div>
<div class="btn btn-primary btn-lg btn-block" ng-if="ctrl.state.OAuthProvider === 'Github'">
<pr-icon icon="'svg-github'"></pr-icon>
Login with Github
Login with GitHub
</div>
<div class="btn btn-primary btn-lg btn-block" ng-if="ctrl.state.OAuthProvider === 'OAuth'">
<pr-icon icon="'log-in'"></pr-icon>

View File

@ -48,8 +48,8 @@ export const options = [
{
id: 'registry_gitlab',
icon: Gitlab,
label: 'Gitlab',
description: 'Gitlab container registry',
label: 'GitLab',
description: 'GitLab container registry',
value: '4',
},
{

View File

@ -209,7 +209,7 @@
<div ng-if="$ctrl.registry.Type == $ctrl.RegistryTypes.QUAY">
<!-- organisation-checkbox -->
<div class="form-group">
<label class="col-sm-3 col-lg-2 control-label text-left"> Use organisation registry </label>
<label class="col-sm-3 col-lg-2 control-label text-left"> Use organization registry </label>
<div class="col-sm-9 col-lg-10">
<por-switch-field
checked="$ctrl.registry.Quay.UseOrganisation"
@ -222,7 +222,7 @@
<div ng-if="$ctrl.registry.Quay.UseOrganisation">
<!-- organisation_name -->
<div class="form-group">
<label for="organisation_name" class="col-sm-3 col-lg-2 control-label required text-left">Organisation name</label>
<label for="organisation_name" class="col-sm-3 col-lg-2 control-label required text-left">Organization name</label>
<div class="col-sm-9 col-lg-10">
<input type="text" class="form-control" id="organisation_name" name="organisation_name" ng-model="$ctrl.registry.Quay.OrganisationName" required />
</div>