tokenary/Shared/Strings.swift

88 lines
4.2 KiB
Swift
Raw Normal View History

2021-11-30 15:56:00 +03:00
// Copyright © 2021 Tokenary. All rights reserved.
import Foundation
struct Strings {
static let sendTransaction = "Send Transaction"
static let signMessage = "Sign Message"
static let signPersonalMessage = "Sign Personal Message"
static let signTypedData = "Sign Typed Data"
2021-08-26 21:17:23 +03:00
static let cancel = "Cancel"
static let ok = "OK"
2021-08-27 23:50:55 +03:00
static let connecting = "Connecting"
2021-12-10 17:11:24 +03:00
static let somethingWentWrong = "Something went wrong"
2021-08-28 16:25:37 +03:00
static let failedToSend = "Failed to send"
static let failedToSign = "Failed to sign"
static let failedToSwitchChain = "Failed to switch chain"
2021-11-30 15:56:00 +03:00
static let tokenary = "Tokenary"
static let showTokenary = "Show " + tokenary
2021-12-10 18:42:58 +03:00
static let enterTokenary = "Enter " + tokenary
2021-08-29 21:56:32 +03:00
static let quit = "Quit"
2021-11-30 15:56:00 +03:00
static let quitTokenary = "Quit Tokenary?"
2021-08-29 21:56:32 +03:00
static let youWontBeAbleToSignRequests = "You won't be able to sign requests."
2021-12-09 17:42:45 +03:00
static let enableSafariExtension = "Enable Safari extension"
static let dropUsALine = "Drop us a line"
static let viewOnGithub = "View on GitHub"
static let viewOnTwitter = "View on Twitter"
2021-08-29 22:50:22 +03:00
static let walletConnectClientDescription = "Crypto wallet for macOS"
static let start = "Start"
static let removeAccount = "Remove account"
2022-05-07 19:32:05 +03:00
static let removeWallet = "Remove wallet"
2021-08-29 22:50:22 +03:00
static let showPrivateKey = "Show private key"
static let showSecretWords = "Show secret words"
2021-12-10 17:11:24 +03:00
static let enterKeystorePassword = "Enter keystore password"
2022-05-08 21:58:03 +03:00
static let importWalletTextFieldPlaceholder = "Options:\n\n• Private Key\n• Secret Words\n• Keystore"
2022-05-07 19:32:05 +03:00
static let failedToImportWallet = "Failed to import wallet"
2021-09-01 21:47:15 +03:00
static let welcomeScreenText = "Sign crypto transactions.\n\nIn any browser.\n\nOn any website."
static let createPassword = "Create Password"
static let repeatPassword = "Repeat Password"
static let enterPassword = "Enter Password"
2021-09-02 23:10:22 +03:00
static let copyAddress = "Copy address"
static let viewOnEtherscan = "View on Etherscan"
2022-05-07 23:03:59 +03:00
static let viewOnSolanaExplorer = "View on Solana explorer"
2021-09-02 23:10:22 +03:00
static let testnets = "Testnets"
2022-05-07 19:32:05 +03:00
static let backUpNewWallet = "Back up new wallet"
2021-09-02 23:10:22 +03:00
static let youWillSeeSecretWords = "You will see 12 secret words."
2022-05-07 19:32:05 +03:00
static let removedWalletsCantBeRecovered = "Removed wallets can't be recovered."
2021-09-03 21:00:57 +03:00
static let removeAnyway = "Remove anyway"
2021-09-04 14:29:52 +03:00
static let iUnderstandTheRisks = "I understand the risks"
2021-09-05 15:20:35 +03:00
static let privateKey = "Private key"
static let secretWords = "Secret words"
static let copy = "Copy"
static let canceled = "Canceled"
static let failedToVerify = "Failed to verify"
2022-05-07 19:32:05 +03:00
static let wallets = "Wallets"
2021-12-07 20:35:14 +03:00
static let selectAccountTwoLines = "Select\nAccount"
2021-12-12 16:17:15 +03:00
static let selectAccount = "Select Account"
2021-12-12 17:18:34 +03:00
static let selectNetwork = "Select Network"
static let selectTestnet = "Select Testnet"
2022-05-07 19:32:05 +03:00
static let importWallet = "Import Wallet"
static let addWallet = "Add Wallet"
2021-12-09 13:35:12 +03:00
static let createNew = "Create New"
2021-12-07 20:35:14 +03:00
static let importExisting = "💼 Import Existing"
2021-12-09 15:09:11 +03:00
static let passwordDoesNotMatch = "Password does not match"
2022-05-08 21:49:40 +03:00
static let toRemoveWallet = "To remove wallet"
2021-12-10 20:18:56 +03:00
static let secretWordsGiveFullAccess = "Secret words give full access to your funds."
static let privateKeyGivesFullAccess = "Private key gives full access to your funds."
2022-05-07 19:32:05 +03:00
static let toShowSecretWords = "To show secret words"
static let toShowPrivateKey = "To show private key"
2021-12-10 21:24:11 +03:00
static let loading = "Loading"
static let failedToLoad = "Failed to load"
static let tryAgain = "Try again"
static let noData = "There is no data yet"
static let refresh = "Refresh"
static let tokenaryIsEmpty = "Tokenary is empty"
2021-12-10 22:44:53 +03:00
static let pleaseTypeAtLeast = "Please type at least 4 characters"
2021-12-13 16:27:23 +03:00
static let unknownWebsite = "Unknown website ⚠️"
2021-12-13 23:06:14 +03:00
static let calculating = "Calculating…"
2021-12-16 15:33:40 +03:00
static let howToEnableSafariExtension = "How to enable Safari extension?"
static let shareInvite = "Share an invite"
static let approveTransaction = "Approve Transaction"
2022-05-07 19:32:05 +03:00
static let multicoinWallet = "Multicoin Wallet"
static let privateKeyWallets = "Private Key Wallets"
static let editAccounts = "Edit accounts"
2022-05-07 23:03:59 +03:00
static let removingTheLastAccount = "Removing the last account removes a wallet as well"
}