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

fix: change name variables on attributes[WTEL-4047] #38

Merged
merged 1 commit into from
Dec 19, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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