Skip to content

Commit b0e1bbb

Browse files
committed
fix(transifex): use correct app name
Signed-off-by: Hamza <hamzamahjoubi221@gmail.com>
1 parent a84f80f commit b0e1bbb

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/components/Properties/PropertyText.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
id="textarea"
5454
ref="textarea"
5555
v-model:model-value="localValue"
56-
:aria-label="t('mail', 'note')"
56+
:aria-label="t('contacts', 'note')"
5757
:inputmode="inputmode"
5858
:readonly="isReadOnly"
5959
@update:model-value="updateValueNoDebounce"
@@ -65,7 +65,7 @@
6565
v-else-if="propName === 'email'"
6666
ref="email"
6767
v-model:model-value="localValue"
68-
:aria-label="t('mail', 'email')"
68+
:aria-label="t('contacts', 'email')"
6969
:class="{ 'property__value--with-ext': haveExtHandler }"
7070
autocapitalize="none"
7171
autocomplete="email"
@@ -112,7 +112,7 @@
112112
v-if="haveExtHandler"
113113
class="property__ext"
114114
:href="externalHandler"
115-
:aria-label="t('mail', 'send an email')"
115+
:aria-label="t('contacts', 'send an email')"
116116
target="_blank">
117117
<template #icon>
118118
<OpenInNewIcon :size="20" />

src/views/ReadOnlyContactDetails.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<NcEmptyContent
1313
v-else-if="!contact"
1414
class="empty-content"
15-
:name="t('mail', 'No data for this contact')"
16-
:description="t('mail', 'No data for this contact on their profile')">
15+
:name="t('contacts', 'No data for this contact')"
16+
:description="t('contacts', 'No data for this contact on their profile')">
1717
<template #icon>
1818
<IconContact :size="20" />
1919
</template>
@@ -194,7 +194,7 @@ export default {
194194
*/
195195
groupsModel() {
196196
return {
197-
readableName: t('mail', 'Contact groups'),
197+
readableName: t('contacts', 'Contact groups'),
198198
icon: 'icon-contacts-dark',
199199
}
200200
},

0 commit comments

Comments
 (0)