Skip to content

Commit

Permalink
fix: change name variables on attributes[WTEL-4047]
Browse files Browse the repository at this point in the history
  • Loading branch information
Lera24 committed Dec 18, 2023
1 parent 03671cf commit 42b3817
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/app/locale/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default {
dummy: 'There are no phone numbers yet',
},
},
attributes: 'Attribute | Attributes',
},
permissions: {
read: 'Read',
Expand Down
1 change: 1 addition & 0 deletions src/app/locale/ru/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default {
dummy: 'Телефонные номера еще не добавлены',
},
},
attributes: 'Атрибут | Атрибуты',
},
permissions: {
read: 'Читать',
Expand Down
1 change: 1 addition & 0 deletions src/app/locale/ua/ua.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default {
dummy: 'Телефонні номери ще не додано',
},
},
attributes: 'Атрибут | Атрибути',
},
permissions: {
read: 'Читати',
Expand Down
2 changes: 1 addition & 1 deletion src/modules/contacts/components/opened-contact-tabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const tabs = computed(() => [
pathName: `${CrmSections.CONTACTS}-communications`,
},
{
text: t('vocabulary.variables', 2),
text: t('contacts.attributes', 2),
value: 'variables',
pathName: `${CrmSections.CONTACTS}-variables`,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const searchModeOptions = computed(() => [
},
{
value: SearchMode.VARIABLES,
text: t('vocabulary.variables', 1),
text: t('contacts.attributes', 1),
},
{
value: SearchMode.DESTINATION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
>
<template v-slot:header>
{{ mode === 'update' ? t('reusable.edit') : t('reusable.add') }}
{{ t('vocabulary.variables', 1).toLowerCase() }}
{{ t('contacts.attributes', 1).toLowerCase() }}
</template>
<template v-slot:main>
<form>
Expand Down

0 comments on commit 42b3817

Please sign in to comment.