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] translations #157

Merged
merged 1 commit into from
Jun 27, 2022
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 locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@
"There are no keys with wallets able to receive funds. Remember to backup your keys before using this feature.": "There are no keys with wallets able to receive funds. Remember to backup your keys before using this feature.",
"Unknown Error": "Unknown Error",
"Deposit to": "Deposit to",
"Select Destination": "Select Destination",
"View Offers": "View Offers",
"Terms of Use": "Terms of Use",
"AML/KYC Policy": "AML/KYC Policy",
Expand Down
1 change: 1 addition & 0 deletions locales/es/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@
"There are no keys with wallets able to receive funds. Remember to backup your keys before using this feature.": "No hay claves con billeteras capaces de recibir fondos. Recuerda hacer una copia de seguridad de tus claves antes de usar esta función.",
"Unknown Error": "Error desconocido",
"Deposit to": "Depositar en",
"Select Destination": "Seleccionar destino",
"View Offers": "Ver ofertas",
"Terms of Use": "Términos de uso",
"AML/KYC Policy": "Política de AML/KYC",
Expand Down
4 changes: 2 additions & 2 deletions src/navigation/services/buy-crypto/screens/BuyCryptoRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ const BuyCryptoRoot: React.FC<
{
selectedWallet: selectedWallet?.currencyAbbreviation.toUpperCase(),
linkedWalletName: linkedWalletName
? '(' + linkedWalletName + ') '
? '(' + linkedWalletName + ')'
: ' ',
},
),
Expand Down Expand Up @@ -515,7 +515,7 @@ const BuyCryptoRoot: React.FC<
style={{color: White}}
numberOfLines={1}
ellipsizeMode={'tail'}>
t{'Select Destination'}
{t('Select Destination')}
</SelectedOptionText>
<ArrowContainer>
<SelectorArrowDown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ const SwapCryptoRoot: React.FC = () => {
selectedWallet:
toWalletSelected?.currencyAbbreviation.toUpperCase(),
linkedWalletName: linkedWalletName
? '(' + linkedWalletName + ') '
? '(' + linkedWalletName + ')'
: ' ',
},
),
Expand Down