diff --git a/src/views/mobile/ExchangeRates.vue b/src/views/mobile/ExchangeRates.vue index eb7eaa9f..87b1c881 100644 --- a/src/views/mobile/ExchangeRates.vue +++ b/src/views/mobile/ExchangeRates.vue @@ -17,7 +17,7 @@ smart-select :smart-select-params="{ openIn: 'popup', pageTitle: $t('Base Currency'), searchbar: true, searchbarPlaceholder: $t('Currency Name'), searchbarDisableText: $t('Cancel'), closeOnSelect: true, popupCloseLinkText: $t('Done'), scrollToSelectedItem: true }" > - {{ `currency.${baseCurrency}` | localized }}  + {{ $t(`currency.${baseCurrency}`) }}  {{ baseCurrency }} @@ -110,7 +110,7 @@ diff --git a/src/views/mobile/accounts/Edit.vue b/src/views/mobile/accounts/Edit.vue index 51076885..c02fe017 100644 --- a/src/views/mobile/accounts/Edit.vue +++ b/src/views/mobile/accounts/Edit.vue @@ -128,7 +128,7 @@ smart-select :smart-select-params="{ openIn: 'popup', searchbar: true, searchbarPlaceholder: $t('Currency Name'), searchbarDisableText: $t('Cancel'), closeOnSelect: true, popupCloseLinkText: $t('Done'), scrollToSelectedItem: true }" > - {{ `currency.${account.currency}` | localized }}  + {{ $t(`currency.${account.currency}`) }}  {{ account.currency }} diff --git a/src/views/mobile/transactions/List.vue b/src/views/mobile/transactions/List.vue index 54be53e4..2bc9bff9 100644 --- a/src/views/mobile/transactions/List.vue +++ b/src/views/mobile/transactions/List.vue @@ -292,7 +292,7 @@ {{ transaction.day }} - {{ `datetime.${transaction.dayOfWeek}.short` | localized }} + {{ $t(`datetime.${transaction.dayOfWeek}.short`) }}
@@ -366,7 +366,7 @@
- {{ `currency.${newProfile.defaultCurrency}` | localized }}  + {{ $t(`currency.${newProfile.defaultCurrency}`) }}  {{ newProfile.defaultCurrency }} + :value="weekDay.type">{{ $t(`datetime.${weekDay.name}.long`) }} @@ -140,7 +140,7 @@