Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a tooltip for the replication rule #19509

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -658,8 +658,25 @@ <h3 class="modal-title">{{ headerTitle | translate }}</h3>
for="ruleDeletion"
>{{
'REPLICATION.DELETE_REMOTE_IMAGES' | translate
}}</label
>
}}
<clr-tooltip>
<clr-icon
clrTooltipTrigger
shape="info-circle"
size="24"></clr-icon>
<clr-tooltip-content
clrPosition="top-left"
clrSize="lg"
*clrIfOpen>
<span>
{{
'REPLICATION.PUSH_BASED_ONLY'
| translate
}}
</span>
</clr-tooltip-content>
</clr-tooltip>
</label>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ <h3 class="modal-title oidc-header-text">
name="oidcUsername"
type="text"
[formControl]="oidcUsername"
pattern='[^,"~#$%]+'
required
id="oidcUsername"
size="40" />
Expand Down
1 change: 1 addition & 0 deletions src/portal/src/i18n/lang/de-de-lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,7 @@
"RESOURCE_TYPE": "Ressourcen-Typ"
},
"REPLICATION": {
"PUSH_BASED_ONLY": "Only for the push-based replication",
"YES": "Ja",
"SECONDS": "Sekunden",
"MINUTES": "Minuten",
Expand Down
1 change: 1 addition & 0 deletions src/portal/src/i18n/lang/en-us-lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,7 @@
"RESOURCE_TYPE": "Resource Type"
},
"REPLICATION": {
"PUSH_BASED_ONLY": "Only for the push-based replication",
"YES": "Yes",
"SECONDS": "Seconds",
"MINUTES": "Minutes",
Expand Down
1 change: 1 addition & 0 deletions src/portal/src/i18n/lang/es-es-lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,7 @@
"RESOURCE_TYPE": "Resource Type"
},
"REPLICATION": {
"PUSH_BASED_ONLY": "Only for the push-based replication",
"YES": "Yes",
"SECONDS": "Seconds",
"MINUTES": "Minutes",
Expand Down
1 change: 1 addition & 0 deletions src/portal/src/i18n/lang/fr-fr-lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,7 @@
"RESOURCE_TYPE": "Type de ressource"
},
"REPLICATION": {
"PUSH_BASED_ONLY": "Only for the push-based replication",
"YES": "Oui",
"SECONDS": "Secondes",
"MINUTES": "Minutes",
Expand Down
1 change: 1 addition & 0 deletions src/portal/src/i18n/lang/pt-br-lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@
"RESOURCE_TYPE": "Tipo de Recurso"
},
"REPLICATION": {
"PUSH_BASED_ONLY": "Only for the push-based replication",
"YES": "Sim",
"SECONDS": "Segundo",
"MINUTES": "Minuto",
Expand Down
1 change: 1 addition & 0 deletions src/portal/src/i18n/lang/tr-tr-lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,7 @@
"RESOURCE_TYPE": "Resource Type"
},
"REPLICATION": {
"PUSH_BASED_ONLY": "Only for the push-based replication",
"YES": "Evet",
"SECONDS": "Saniye",
"MINUTES": "Dakika",
Expand Down
1 change: 1 addition & 0 deletions src/portal/src/i18n/lang/zh-cn-lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,7 @@
"RESOURCE_TYPE": "资源类型"
},
"REPLICATION": {
"PUSH_BASED_ONLY": "仅针对于 Push-Based 模式下的复制操作",
"YES": "是",
"SECONDS": "秒",
"MINUTES": "分钟",
Expand Down
1 change: 1 addition & 0 deletions src/portal/src/i18n/lang/zh-tw-lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,7 @@
"RESOURCE_TYPE": "資源類型"
},
"REPLICATION": {
"PUSH_BASED_ONLY": "Only for the push-based replication",
"YES": "是",
"SECONDS": "秒",
"MINUTES": "分鐘",
Expand Down