Skip to content

Commit

Permalink
refactor: locales added to some fields [WTEL-3717]
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirBeria committed Oct 20, 2023
1 parent ef9542f commit 8cbf5db
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/app/locale/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -963,6 +963,9 @@ export default {
singleSignOn: {
allTypes: 'All types',
singleSignOn: 'Single Sign-on',
clientId: 'Client id',
clientSecret: 'Client secret',
discoveryUrl: 'Discovery url',
},

importCsv: {
Expand Down
3 changes: 3 additions & 0 deletions src/app/locale/ru/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -963,6 +963,9 @@ export default {
allTypes: 'Все типы',
// TODO: add locale
singleSignOn: 'Single Sign-on',
clientId: 'Client id',
clientSecret: 'Client secret',
discoveryUrl: 'Discovery url',
},

importCsv: {
Expand Down
3 changes: 3 additions & 0 deletions src/app/locale/ua/ua.js
Original file line number Diff line number Diff line change
Expand Up @@ -963,6 +963,9 @@ export default {
allTypes: 'Всі типи',
// TODO: add locale
singleSignOn: 'Single Sign-on',
clientId: 'Client id',
clientSecret: 'Client secret',
discoveryUrl: 'Discovery url',
},
importCsv: {
importCsv: 'Імпорт даних з CSV файлу | Імпорт даних з CSV файлів',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@
></wt-select>
<wt-input
:disabled="disableUserInput"
:label="'Client id'"
:label="$t('objects.integrations.singleSignOn.clientId')"
:v="v.itemInstance.clientId"
:value="itemInstance.clientId"
required
@input="setItemProp({ prop: 'clientId', value: $event })"
></wt-input>
<wt-input
:disabled="disableUserInput"
:label="'Client secret'"
:label="$t('objects.integrations.singleSignOn.clientSecret')"
:v="v.itemInstance.clientSecret"
:value="itemInstance.clientSecret"
required
@input="setItemProp({ prop: 'clientSecret', value: $event })"
></wt-input>
<wt-input
:disabled="disableUserInput"
:label="'Discovery url'"
:label="$t('objects.integrations.singleSignOn.discoveryUrl')"
:v="v.itemInstance.discoveryUrl"
:value="itemInstance.discoveryUrl"
required
Expand Down

0 comments on commit 8cbf5db

Please sign in to comment.