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 }} @@ -56,7 +56,7 @@ :after="getConvertedAmount(exchangeRate) | exchangeRate" swipeout> - {{ exchangeRate.currencyDisplayName }} + {{ exchangeRate.currencyDisplayName }} {{ exchangeRate.currencyCode }} diff --git a/src/views/mobile/Signup.vue b/src/views/mobile/Signup.vue index 3bfa507f..04e86e2d 100644 --- a/src/views/mobile/Signup.vue +++ b/src/views/mobile/Signup.vue @@ -90,7 +90,7 @@ smart-select :smart-select-params="{ openIn: 'popup', pageTitle: $t('Default Currency'), searchbar: true, searchbarPlaceholder: $t('Currency Name'), searchbarDisableText: $t('Cancel'), closeOnSelect: true, popupCloseLinkText: $t('Done'), scrollToSelectedItem: true }" > - {{ `currency.${user.defaultCurrency}` | localized }} + {{ $t(`currency.${user.defaultCurrency}`) }} {{ user.defaultCurrency }} @@ -110,7 +110,7 @@ {{ `datetime.${weekDay.name}.long` | localized }} + :value="weekDay.type">{{ $t(`datetime.${weekDay.name}.long`) }} 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 }} @@ -282,7 +282,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.${subAccount.currency}` | localized }} + {{ $t(`currency.${subAccount.currency}`) }} {{ subAccount.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 }} @@ -127,7 +127,7 @@ {{ `datetime.${weekDay.name}.long` | localized }} + :value="weekDay.type">{{ $t(`datetime.${weekDay.name}.long`) }} @@ -140,7 +140,7 @@ {{ option.name | localized }} + :value="option.value">{{ $t(option.name) }}