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

feat: translate multi import tokens #9205

Merged
merged 2 commits into from
Apr 11, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ exports[`AddCustomToken should render correctly 1`] = `
}
}
>
Token Symbol
Token symbol
</Text>
<TextInput
editable={true}
Expand Down Expand Up @@ -323,7 +323,7 @@ exports[`AddCustomToken should render correctly 1`] = `
}
}
>
Token Decimal
Token decimal
</Text>
<TextInput
editable={true}
Expand Down
16 changes: 12 additions & 4 deletions locales/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -351,12 +351,17 @@
"no_collectibles": "Don’t see your NFT?",
"no_available_tokens": "Don't see your token?",
"add_tokens": "Import tokens",
"are_you_sure_exit": "Are you sure you want to exit?",
"search_information_not_saved":"Your search information will not be saved.",
"import_token": "Would you like to import this token?",
"tokens_detected_in_account": "{{tokenCount}} new {{tokensLabel}} found in this account",
"token_toast": {
"tokens_imported_title": "Imported Tokens",
"tokens_imported_desc": "Successfully imported {{tokenSymbols}}",
"token_imported_title": "Imported Token",
"token_imported_desc": "Successfully imported {{tokenSymbol}}",
"token_imported_desc_1": "You’ve imported a token.",
"tokens_import_success_multiple": "You’ve imported {{tokensNumber}} tokens.",
"tokens_hidden_title": "Hiding Tokens",
"tokens_hidden_desc": "Hiding detected tokens from your wallet",
"token_hidden_title": "Hiding Token",
Expand Down Expand Up @@ -442,8 +447,8 @@
"add_asset": {
"title": "Import tokens",
"title_nft": "Import NFT",
"search_token": "SEARCH",
"custom_token": "CUSTOM TOKEN",
"search_token": "Search",
"custom_token": "Custom token",
"tokens": {
"cancel_add_token": "CANCEL",
"add_token": "IMPORT"
Expand Down Expand Up @@ -500,14 +505,16 @@
"resultPageErrorDefaultMessage": "The operation failed."
},
"token": {
"token_symbol": "Token Symbol",
"token_symbol": "Token symbol",
"token_address": "Token Address",
"token_decimal": "Token Decimal",
"token_decimal": "Token decimal",
"search_tokens_placeholder": "Search Tokens",
"address_cant_be_empty": "Token address can't be empty.",
"address_must_be_valid": "Token address must be a valid address.",
"symbol_cant_be_empty": "Token symbol can't be empty.",
"symbol_length": "Symbol must be 11 characters or fewer",
"decimals_cant_be_empty": "Token decimals can't be empty.",
"decimals_is_required":"Decimal is required. Find it on:",
"no_tokens_found": "We couldn't find any tokens with that name.",
"select_token": "Select Token",
"address_must_be_smart_contract": "Personal address detected. Enter the token contract address."
Expand Down Expand Up @@ -1295,6 +1302,7 @@
"contract": "Contract ({{address}})",
"contract_name": "Contract name:",
"contract_address": "Contract address:",
"invalid_contract_address": " Contract address is invalid. Enter a new one",
"contract_allowance": "Allowance:",
"data": "Data",
"function_approve": "Function: Approve",
Expand Down
Loading