Browse Source

Fix empty state text for add account

master
meriadec 7 years ago
parent
commit
5adf9d7c71
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 2
      src/components/modals/AddAccounts/steps/03-step-import.js
  2. 2
      static/i18n/en/app.yml

2
src/components/modals/AddAccounts/steps/03-step-import.js

@ -161,7 +161,7 @@ class StepImport extends PureComponent<StepProps> {
})
const importableAccountsEmpty = t('app:addAccounts.noAccountToImport', {
currencyName: currency ? ` ${currency.name}}` : '',
currencyName: currency ? ` ${currency.name}` : '',
})
return (

2
static/i18n/en/app.yml

@ -138,7 +138,7 @@ addAccounts:
editName: Edit name
newAccount: New account
legacyAccount: '{{accountName}} (legacy)'
noAccountToImport: We didnt find any {{currencyName}}} account to import.
noAccountToImport: We didnt find any {{currencyName}} account to import.
success: Great success!
createNewAccount:
title: Create new account

Loading…
Cancel
Save