diff --git a/scripts/translationScripts/update-en-ts.py b/scripts/translationScripts/update-en-ts.py
index 43cfa64b5c..2a3c478ce1 100644
--- a/scripts/translationScripts/update-en-ts.py
+++ b/scripts/translationScripts/update-en-ts.py
@@ -1,8 +1,9 @@
import xml.etree.ElementTree as ET
import subprocess
+import os
-# 1) Runs lupdate ../../ui/nim-status-client.pro -target-language en
-# 2) Fixups qml_en.ts: ensure each source has translation, otherwise Lokalise can't figure out base words
+# 1) Runs lupdate on ../../ui/nim-status-client.pro
+# 2) Fixups qml_base.ts: ensure each source has translation, otherwise Lokalise can't figure out base words
#
# usage: `python update-en-ts.py`
@@ -23,9 +24,15 @@ def fixupTranslations(enTsFile: str):
if __name__ == "__main__":
- p = subprocess.run(['lupdate', '../../ui/nim-status-client.pro', '-target-language', 'en'],
+ # full base TS file (has to come first as we're targetting the same language)
+ basefile = "../../ui/i18n/qml_base.ts"
+ p = subprocess.run(['lupdate', '../../ui/nim-status-client.pro', '-source-language', 'en', '-no-obsolete', '-target-language', 'en_GB', '-ts', basefile],
stdout=subprocess.PIPE, stderr=subprocess.STDOUT, check=True, text=True)
-
print(p.stdout)
+ fixupTranslations(basefile)
- fixupTranslations('../../ui/i18n/qml_en.ts')
+ # EN "translation" file, plurals only
+ enfile = "../../ui/i18n/qml_en.ts"
+ p = subprocess.run(['lupdate', '../../ui/nim-status-client.pro', '-source-language', 'en', '-pluralonly', '-target-language', 'en_GB', '-ts', enfile],
+ stdout=subprocess.PIPE, stderr=subprocess.STDOUT, check=True, text=True)
+ print(p.stdout)
diff --git a/ui/i18n/qml_base.ts b/ui/i18n/qml_base.ts
new file mode 100644
index 0000000000..4b77d3e385
--- /dev/null
+++ b/ui/i18n/qml_base.ts
@@ -0,0 +1,14702 @@
+
+
+ AboutView
+
+
+
+
+ Check for updates
+
+
+
+
+
+ Current Version
+
+
+
+
+
+ Release Notes
+
+
+
+
+
+ Our Principles
+
+
+
+
+
+ Status desktop’s GitHub Repositories
+
+
+
+
+
+ Status Desktop
+
+
+
+
+
+ Status Go
+
+
+
+
+
+ StatusQ
+
+
+
+
+
+ go-waku
+
+
+
+
+
+ Legal & Privacy Documents
+
+
+
+
+
+ Terms of Use
+
+
+
+
+
+ Privacy Policy
+
+
+
+
+
+ Software License
+
+
+
+ AcceptRejectOptionsButtonsPanel
+
+
+
+
+ Decline and block
+
+
+
+ AcceptTransactionView
+
+
+
+
+ Accept and share address
+
+
+
+
+
+ Accept and send
+
+
+
+
+
+
+
+ Decline
+
+
+
+ AccountView
+
+
+
+
+ Type
+
+
+
+
+
+ Watch-Only Account
+
+
+
+
+
+ Generated by your Status seed phrase profile
+
+
+
+
+
+ Imported Account
+
+
+
+
+
+ Storage
+
+
+
+
+
+ On Device
+
+
+
+
+
+ Derivation Path
+
+
+
+
+
+ Related Accounts
+
+
+
+
+
+ Remove from your profile
+
+
+
+
+
+ Confirm %1 Removal
+
+
+
+
+
+ You will not be able to restore viewing access to this account in the future unless you enter this account’s address again.
+
+
+
+
+
+ Remove Account
+
+
+
+ Acknowledgements
+
+
+
+
+ Secure Your Assets and Funds
+
+
+
+
+
+ Your seed phrase is a 12-word passcode to your funds.
+
+
+
+
+
+ Your seed phrase cannot be recovered if lost. Therefore, you <b>must</b> back it up. The simplest way is to <b>write it down offline and store it somewhere secure.</b>
+
+
+
+
+
+ I have a pen and paper
+
+
+
+
+
+ I am ready to write down my seed phrase
+
+
+
+
+
+ I know where I’ll store it
+
+
+
+
+
+ You can only complete this process once. Status will not store your seed phrase and can never help you recover it.
+
+
+
+ ActivityCenterPopupTopBarPanel
+
+
+
+
+ All
+
+
+
+
+
+ Admin
+
+
+
+
+
+ Mentions
+
+
+
+
+
+ Replies
+
+
+
+
+
+ Contact requests
+
+
+
+
+
+ Identity verification
+
+
+
+
+
+ Transactions
+
+
+
+
+
+ Membership
+
+
+
+
+
+ System
+
+
+
+
+
+ Mark all as Read
+
+
+
+
+
+ Show read notifications
+
+
+
+
+
+ Hide read notifications
+
+
+
+ ActivityNotificationBase
+
+
+
+
+ Mark as Read
+
+
+
+
+
+ Mark as Unread
+
+
+
+ AddAccountModal
+
+
+
+
+ Generate an account
+
+
+
+
+
+ An authentication failed
+
+
+
+
+
+ Enter an account name...
+
+
+
+
+
+ Account name
+
+
+
+
+
+ You need to enter an account name
+
+
+
+
+
+ color
+
+
+
+
+
+ Advanced
+
+
+
+
+
+ Authenticate
+
+
+
+
+
+ Loading...
+
+
+
+
+
+ Add account
+
+
+
+ AddEditSavedAddressPopup
+
+
+
+
+
+
+ Edit saved address
+
+
+
+
+
+
+
+ Add saved address
+
+
+
+
+
+
+
+ Enter a name
+
+
+
+
+
+
+
+ Name
+
+
+
+
+
+
+
+ Name must not be blank
+
+
+
+
+
+
+
+ This is not a valid account name
+
+
+
+
+
+
+
+ Address
+
+
+
+
+
+
+
+ Enter ENS Name or Ethereum Address
+
+
+
+
+
+
+
+ Please enter a valid ENS name OR Ethereum Address
+
+
+
+
+
+
+
+ Save
+
+
+
+
+
+
+
+ Add address
+
+
+
+ AddFavoriteModal
+
+
+
+
+ Favorite added
+
+
+
+
+
+ Edit
+
+
+
+
+
+ Add favorite
+
+
+
+
+
+ URL
+
+
+
+
+
+ Paste URL
+
+
+
+
+
+ Paste
+
+
+
+
+
+ Pasted
+
+
+
+
+
+ Please enter a valid URL
+
+
+
+
+
+ Name
+
+
+
+
+
+ Name of the website
+
+
+
+
+
+ Please enter a name
+
+
+
+
+
+ Remove
+
+
+
+
+
+ Done
+
+
+
+
+
+ Add
+
+
+
+
+
+ Add Favorite
+
+
+
+ AddShowTokenModal
+
+
+
+
+ Add custom token
+
+
+
+
+
+ This needs to be a valid address
+
+
+
+
+
+ Invalid ERC20 address
+
+
+
+
+
+ Enter contract address...
+
+
+
+
+
+ Contract address
+
+
+
+
+
+ The name of your token...
+
+
+
+
+
+ Name
+
+
+
+
+
+ ABC
+
+
+
+
+
+ Symbol
+
+
+
+
+
+ Decimals
+
+
+
+
+
+ Changing settings failed
+
+
+
+
+
+ Add
+
+
+
+ AddWakuNodeModal
+
+
+
+
+ Waku nodes
+
+
+
+
+
+ Name
+
+
+
+
+
+ Specify a name
+
+
+
+
+
+ You need to enter a name
+
+
+
+
+
+ Storenode multiaddress
+
+
+
+
+
+ History node address
+
+
+
+
+
+ You need to enter the storenode multiaddress
+
+
+
+
+
+ You need to enter the enode address
+
+
+
+
+
+ Multiaddress must start with a "/"
+
+
+
+
+
+ The format must be: enode://{enode-id}:{password}@{ip-address}:{port}
+
+
+
+
+
+ Save
+
+
+
+ AddressInput
+
+
+
+
+ ENS Username not found
+
+
+
+ AddressRequiredValidator
+
+
+
+
+ You need to request the recipient’s address first.
+Assets won’t be sent yet.
+
+
+
+ AdvancedAddAccountView
+
+
+
+
+ Enter address...
+
+
+
+
+
+ Account address
+
+
+
+
+
+ This needs to be a valid address (starting with 0x)
+
+
+
+
+
+ You need to enter an address
+
+
+
+ AdvancedView
+
+
+
+
+ Fleet
+
+
+
+
+
+ Minimize on close
+
+
+
+
+
+ Application Logs
+
+
+
+
+
+ Experimental features
+
+
+
+
+
+ Wallet
+
+
+
+
+
+ Dapp Browser
+
+
+
+
+
+ Community History Archive Protocol
+
+
+
+
+
+ Node Management
+
+
+
+
+
+ Community Permissions Settings
+
+
+
+
+
+ Discord Import Tool
+
+
+
+
+
+ Bloom filter level
+
+
+
+
+
+ Warning!
+
+
+
+
+
+
+
+ The account will be logged out. When you login again, the selected mode will be enabled
+
+
+
+
+
+
+
+ Light Node
+
+
+
+
+
+ Normal
+
+
+
+
+
+
+
+ Full Node
+
+
+
+
+
+ WakuV2 mode
+
+
+
+
+
+ Developer features
+
+
+
+
+
+ Full developer mode
+
+
+
+
+
+ Download messages
+
+
+
+
+
+ Telemetry
+
+
+
+
+
+ Debug
+
+
+
+
+
+ Auto message
+
+
+
+
+
+ Are you sure you want to enable all the develoer features? The app will be restarted.
+
+
+
+
+
+ Are you sure you want to enable telemetry? This will reduce your privacy level while using Status. You need to restart the app for this change to take effect.
+
+
+
+
+
+ Are you sure you want to enable auto message? You need to restart the app for this change to take effect.
+
+
+
+
+
+ Are you sure you want to %1 debug mode? You need to restart the app for this change to take effect.
+
+
+
+
+
+ disable
+
+
+
+
+
+ enable
+
+
+
+
+
+ This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk.
+
+
+
+
+
+ I understand
+
+
+
+ AllowNotificationsView
+
+
+
+
+ Allow notifications
+
+
+
+
+
+ Status will notify you about new messages. You can
+edit your notification preferences later in settings.
+
+
+
+
+
+ Ok, got it
+
+
+
+ AmountInput
+
+
+
+
+ The maximum number of characters is %1
+
+
+
+
+
+ Invalid amount format
+
+
+
+
+
+ Amount
+
+
+
+ AppMain
+
+
+
+
+ Profile Picture
+
+
+
+
+
+ Make this my Profile Pic
+
+
+
+
+
+ Invite People
+
+
+
+
+
+ View Community
+
+
+
+
+
+ Leave Community
+
+
+
+
+
+ Testnet mode is enabled. All balances, transactions and dApp interactions will be on testnets.
+
+
+
+
+
+ Turn off
+
+
+
+
+
+ Turn off Testnet mode
+
+
+
+
+
+ Closing this banner will turn off Testnet mode.
+All future transactions will be on mainnet or other active networks.
+
+
+
+
+
+ Turn off Testnet
+
+
+
+
+
+ Secure your seed phrase
+
+
+
+
+
+ Back up now
+
+
+
+
+
+ The import of ‘%1’ from Discord to Status was stopped: <a href='#'>Critical issues found</a>
+
+
+
+
+
+ ‘%1’ was successfully imported from Discord to Status
+
+
+
+
+
+ Details (%1)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Details
+
+
+
+
+
+ Importing ‘%1’ from Discord to Status
+
+
+
+
+
+ Check progress (%1)
+
+
+
+
+
+ Check progress
+
+
+
+
+
+ Visit your Community
+
+
+
+
+
+ Connected
+
+
+
+
+
+ Disconnected
+
+
+
+
+
+ A new version of Status (%1) is available
+
+
+
+
+
+ Your version is up to date
+
+
+
+
+
+ Update
+
+
+
+
+
+ Close
+
+
+
+
+
+ Where do you want to go?
+
+
+
+ AppSearch
+
+
+
+
+ No results
+
+
+
+
+
+ Anywhere
+
+
+
+ AppearanceView
+
+
+
+
+ Blockchains will drop search costs, causing a kind of decomposition that allows you to have markets of entities that are horizontally segregated and vertically segregated.
+
+
+
+
+
+ Text size
+
+
+
+
+
+ XS
+
+
+
+
+
+ S
+
+
+
+
+
+ M
+
+
+
+
+
+ L
+
+
+
+
+
+ XL
+
+
+
+
+
+ XXL
+
+
+
+
+
+ Zoom (requires restart)
+
+
+
+
+
+ 50%
+
+
+
+
+
+ 100%
+
+
+
+
+
+ 150%
+
+
+
+
+
+ 200%
+
+
+
+
+
+ Mode
+
+
+
+
+
+ Light
+
+
+
+
+
+ Dark
+
+
+
+
+
+ System
+
+
+
+ AssetAndAmountInput
+
+
+
+
+ Insufficient balance
+
+
+
+
+
+ Must be greater than or equal to 0
+
+
+
+
+
+ This needs to be a number
+
+
+
+
+
+ Please enter an amount
+
+
+
+
+
+ Balance:
+
+
+
+
+
+ Asset & Amount
+
+
+
+
+
+ The amount is 0. Proceed only if this is desired.
+
+
+
+ AssetDelegate
+
+
+
+
+ %1 %2
+
+
+
+ AssetsDetailView
+
+
+
+
+ Market Cap
+
+
+
+
+
+ Day Low
+
+
+
+
+
+ Day High
+
+
+
+
+
+ Hour
+
+
+
+
+
+ Day
+
+
+
+
+
+ 24 Hours
+
+
+
+
+
+ Overview
+
+
+
+
+
+ Website
+
+
+
+ BackUpCommuntyBannerPanel
+
+
+
+
+ Back up community key
+
+
+
+
+
+ Back up
+
+
+
+ BackupSeedModal
+
+
+
+
+ Not Now
+
+
+
+
+
+ Back up your seed phrase
+
+
+
+
+
+ Confirm Seed Phrase
+
+
+
+
+
+ Continue
+
+
+
+
+
+ Complete & Delete My Seed Phrase
+
+
+
+
+
+
+
+ Confirm word #%1 of your seed phrase
+
+
+
+ BackupSeedStepBase
+
+
+
+
+ Word #%1
+
+
+
+
+
+ Enter word
+
+
+
+
+
+ Wrong word
+
+
+
+ BalanceExceeded
+
+
+
+
+ Balance exceeded
+
+
+
+
+
+ No networks available
+
+
+
+ BalanceValidator
+
+
+
+
+ Insufficient balance
+
+
+
+ BeforeGetStartedModal
+
+
+
+
+ Before you get started...
+
+
+
+
+
+ Get Started
+
+
+
+
+
+ I acknowledge that Status Desktop is in Beta and by using it I take the full responsibility for all risks concerning my data and funds.
+
+
+
+
+
+ I accept Status
+
+
+
+
+
+ Terms of Use
+
+
+
+
+
+ Privacy Policy
+
+
+
+ BlockContactConfirmationDialog
+
+
+
+
+
+
+ Block User
+
+
+
+
+
+ Blocking will stop new messages from reaching you from %1.
+
+
+
+ BloomSelectorButton
+
+
+
+
+ TODO
+
+
+
+ BrowserConnectionModal
+
+
+
+
+ '%1' would like to connect to
+
+
+
+
+
+ Allowing authorizes this DApp to retrieve your wallet address and enable Web3
+
+
+
+
+
+ Granting access authorizes this DApp to retrieve your chat key
+
+
+
+
+
+ Deny
+
+
+
+
+
+ Allow
+
+
+
+ BrowserHeader
+
+
+
+
+ Enter URL
+
+
+
+ BrowserLayout
+
+
+
+
+ Error sending the transaction
+
+
+
+
+
+ Error signing message
+
+
+
+
+
+ Transaction pending...
+
+
+
+
+
+ View on etherscan
+
+
+
+
+
+ Server's certificate not trusted
+
+
+
+
+
+ Do you wish to continue?
+
+
+
+
+
+ If you wish so, you may continue with an unverified certificate. Accepting an unverified certificate means you may not be connected with the host you tried to connect to.
+Do you wish to override the security check and continue?
+
+
+
+ BrowserSettingsMenu
+
+
+
+
+ New Tab
+
+
+
+
+
+ Exit Incognito mode
+
+
+
+
+
+ Go Incognito
+
+
+
+
+
+ Zoom In
+
+
+
+
+
+ Zoom Out
+
+
+
+
+
+ Find
+
+
+
+
+
+ Compatibility mode
+
+
+
+
+
+ Developer Tools
+
+
+
+
+
+ Settings
+
+
+
+ BrowserTabStyle
+
+
+
+
+ Start Page
+
+
+
+ BrowserTabView
+
+
+
+
+ Start Page
+
+
+
+
+
+ New Tab
+
+
+
+
+
+ Downloads Page
+
+
+
+ BrowserView
+
+
+
+
+ Search engine used in the address bar
+
+
+
+
+
+ None
+
+
+
+
+
+ Show Favorites Bar
+
+
+
+
+
+ Connected DApps
+
+
+
+
+
+ No connected dApps
+
+
+
+
+
+ Connecting a dApp grants it permission to view your address and balances, and to send you transaction requests
+
+
+
+ BrowserWalletMenu
+
+
+
+
+ Mainnet
+
+
+
+
+
+ Ropsten
+
+
+
+
+
+ Unknown
+
+
+
+
+
+ Disconnect
+
+
+
+
+
+ Assets
+
+
+
+
+
+ History
+
+
+
+ BrowserWebEngineView
+
+
+
+
+ Add Favorite
+
+
+
+ ChangePasswordModal
+
+
+
+
+ Change password
+
+
+
+
+
+ Change password used to unlock Status on this device & sign transactions.
+
+
+
+
+
+ Change Password
+
+
+
+ ChangePasswordSuccessModal
+
+
+
+
+ <b>Password changed</b>
+
+
+
+
+
+ You need to sign in again using the new password.
+
+
+
+
+
+ Sign out & Quit
+
+
+
+ ChannelIdentifierView
+
+
+
+
+ Welcome to the beginning of the <span style='color: %1'>%2</span> group!
+
+
+
+
+
+ Welcome to the beginning of the <span style='color: %1'>#%2</span> channel!
+
+
+
+
+
+ Any messages you send here are encrypted and can only be read by you and <span style='color: %1'>%2</span>
+
+
+
+ ChatColumnView
+
+
+
+
+ Send
+
+
+
+
+
+ Request Address
+
+
+
+
+
+
+
+ Request
+
+
+
+ ChatCommandModal
+
+
+
+
+ Continue
+
+
+
+
+
+ Receive on account
+
+
+
+
+
+ From account
+
+
+
+
+
+ Address request required
+
+
+
+
+
+ From
+
+
+
+
+
+ To
+
+
+
+
+
+
+
+ Preview
+
+
+
+
+
+ Transaction preview
+
+
+
+
+
+ Next
+
+
+
+ ChatCommandsPopup
+
+
+
+
+ Send transaction
+
+
+
+
+
+ Request transaction
+
+
+
+ ChatContentView
+
+
+
+
+ Blocked
+
+
+
+
+
+ This user has been blocked.
+
+
+
+
+
+ You need to join this community to send messages
+
+
+
+ ChatContextMenuView
+
+
+
+
+ Add / remove from group
+
+
+
+
+
+ Add to group
+
+
+
+
+
+ Edit name and image
+
+
+
+
+
+ Mark as Read
+
+
+
+
+
+ Clear History
+
+
+
+
+
+ Edit Channel
+
+
+
+
+
+ Download
+
+
+
+
+
+ Delete Channel
+
+
+
+
+
+ Leave group
+
+
+
+
+
+ Delete Chat
+
+
+
+
+
+ Leave Chat
+
+
+
+
+
+ Save
+
+
+
+
+
+ Download messages
+
+
+
+
+
+ Delete #%1
+
+
+
+
+
+ Delete chat
+
+
+
+
+
+ Leave chat
+
+
+
+
+
+ Delete
+
+
+
+
+
+ Are you sure you want to delete #%1 channel?
+
+
+
+
+
+ Are you sure you want to delete this chat?
+
+
+
+
+
+ Are you sure you want to leave this chat?
+
+
+
+ ChatHeaderContentView
+
+
+
+
+ Search
+
+
+
+
+
+ Members
+
+
+
+
+
+ More
+
+
+
+
+
+ Public chat
+
+
+
+
+
+
+
+
+
+
+
+ ChatMessagesView
+
+
+
+
+ Failed to send message.
+
+
+
+ ChatRequestMessagePanel
+
+
+
+
+ You need to be mutual contacts with this person for them to receive your messages
+
+
+
+
+
+ Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat
+
+
+
+
+
+ Add to contacts
+
+
+
+ ChatView
+
+
+
+
+ Members
+
+
+
+ ChooseBrowserPopup
+
+
+
+
+ Choose browser
+
+
+
+
+
+ Open in Status
+
+
+
+
+
+ Open in my default browser
+
+
+
+
+
+ Remember my choice. To override it, go to settings.
+
+
+
+ ClosedEmptyPanel
+
+
+
+
+ Your chats will appear here. To start new chats press the button at the top
+
+
+
+ CollectibleCollectionView
+
+
+
+
+ No collectibles available
+
+
+
+ CollectibleDetailView
+
+
+
+
+ Properties
+
+
+
+ CollectibleModal
+
+
+
+
+ unnamed
+
+
+
+
+
+ id
+
+
+
+
+
+ description
+
+
+
+
+
+ View in Opensea
+
+
+
+ CollectiblesContent
+
+
+
+
+ Something went wrong
+
+
+
+
+
+ Reload
+
+
+
+ CollectiblesHeader
+
+
+
+
+ Maximum number of collectibles to display reached
+
+
+
+ CollectiblesModal
+
+
+
+
+ View
+
+
+
+
+
+ Unnamed
+
+
+
+ CollectiblesModalContent
+
+
+
+
+ ID
+
+
+
+
+
+ Description
+
+
+
+ CollectiblesPanel
+
+
+
+
+ Specific amount
+
+
+
+ CollectiblesStore
+
+
+
+
+ Collectibles
+
+
+
+ CollectiblesView
+
+
+
+
+ Collectibles will appear here
+
+
+
+ CommunitiesGridView
+
+
+
+
+ Featured
+
+
+
+
+
+ Popular
+
+
+
+ CommunitiesListPanel
+
+
+
+
+
+
+
+
+
+
+
+
+ Leave Community
+
+
+
+
+
+ Leave %1
+
+
+
+
+
+ Are you sure you want to leave? Once you leave, you will have to request to rejoin if you change your mind.
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ Leave community
+
+
+
+ CommunitiesPopup
+
+
+
+
+ Communities
+
+
+
+
+
+ Access existing community
+
+
+
+
+
+ Search for communities or topics
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create a community
+
+
+
+ CommunitiesPortalLayout
+
+
+
+
+ Find community
+
+
+
+
+
+ Import using key
+
+
+
+
+
+ Create New Community
+
+
+
+
+
+ No communities found
+
+
+
+
+
+ Create new community
+
+
+
+
+
+ Create a new Status community
+
+
+
+
+
+ Create new
+
+
+
+
+
+ '%1' import in progress...
+
+
+
+
+
+ Import existing Discord community into Status
+
+
+
+
+
+ Import existing
+
+
+
+
+
+ Your current import must finished or be cancelled before a new import can be started.
+
+
+
+ CommunitiesView
+
+
+
+
+ Import community
+
+
+
+
+
+ Communities you've joined
+
+
+
+ CommunityBannerPicker
+
+
+
+
+
+
+ Community banner
+
+
+
+
+
+ Choose an image for banner
+
+
+
+
+
+ Make this my Community banner
+
+
+
+ CommunityChannelsAndCategoriesBannerPanel
+
+
+
+
+ Expand your community by adding more channels and categories
+
+
+
+
+
+ Add channels
+
+
+
+
+
+ Add categories
+
+
+
+ CommunityColorPanel
+
+
+
+
+ Community Colour
+
+
+
+
+
+ Select Community Colour
+
+
+
+
+
+ This is not a valid color
+
+
+
+
+
+ Preview
+
+
+
+
+
+ White text should be legible on top of this color
+
+
+
+
+
+ Standard colors
+
+
+
+ CommunityColorPicker
+
+
+
+
+ Community color
+
+
+
+ CommunityColumnView
+
+
+
+
+
+
+
+
+
+
+
+
+ Start chat
+
+
+
+
+
+ Pending
+
+
+
+
+
+ Request to join
+
+
+
+
+
+ Join Community
+
+
+
+
+
+ Membership requests
+
+
+
+
+
+
+
+ Create channel
+
+
+
+
+
+
+
+ Create category
+
+
+
+
+
+
+
+ Invite people
+
+
+
+
+
+ Unmute category
+
+
+
+
+
+ Mute category
+
+
+
+
+
+ Edit Category
+
+
+
+
+
+ Delete Category
+
+
+
+
+
+ Delete %1 category
+
+
+
+
+
+ Are you sure you want to delete %1 category? Channels inside the category won’t be deleted.
+
+
+
+
+
+ Create channel or category
+
+
+
+
+
+ Error deleting the category
+
+
+
+ CommunityDelegate
+
+
+
+
+ Admin
+
+
+
+
+
+ Member
+
+
+
+ CommunityDescriptionInput
+
+
+
+
+ Give it a short description
+
+
+
+
+
+ What your community is about
+
+
+
+
+
+ community description
+
+
+
+ CommunityDetailPopup
+
+
+
+
+ Public community
+
+
+
+
+
+ Invitation only community
+
+
+
+
+
+ On request community
+
+
+
+
+
+
+
+ Unknown community
+
+
+
+
+
+ - ENS only
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Channels
+
+
+
+
+
+
+
+ Join ‘%1’
+
+
+
+
+
+ Pending
+
+
+
+
+
+ You need to be invited
+
+
+
+
+
+ Request to join ‘%1’
+
+
+
+
+
+ Error joining the community
+
+
+
+ CommunityIntroDialog
+
+
+
+
+ Welcome to %1
+
+
+
+
+
+ Join %1
+
+
+
+
+
+ Community <b>%1</b> has no intro message...
+
+
+
+
+
+ I agree with the above
+
+
+
+ CommunityIntroMessageInput
+
+
+
+
+ Community introduction and rules
+
+
+
+
+
+ What new members will read before joining (eg. community rules, welcome message, etc.). Members will need to tick a check box agreeing to these rules before they are allowed to join your community.
+
+
+
+
+
+ community intro message
+
+
+
+ CommunityLogoPicker
+
+
+
+
+
+
+ Community logo
+
+
+
+
+
+ Choose an image as logo
+
+
+
+
+
+ Make this my Community logo
+
+
+
+ CommunityMembersSettingsPanel
+
+
+
+
+ Members
+
+
+
+
+
+ All Members
+
+
+
+
+
+ Pending Requests
+
+
+
+
+
+ Rejected
+
+
+
+
+
+ Banned
+
+
+
+
+
+ No members to search
+
+
+
+
+
+
+
+
+
+
+
+
+
+ No pending requests to search
+
+
+
+
+
+ Search %1's %2 pending request%3
+
+
+
+
+
+ No rejected members to search
+
+
+
+
+
+ Search %1's %2 rejected member%3
+
+
+
+
+
+ No banned members to search
+
+
+
+
+
+ Search %1's %2 banned member%3
+
+
+
+
+
+ Are you sure you ban <b>%1</b> from %2?
+
+
+
+
+
+ Ban %1
+
+
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ Ban
+
+
+
+
+
+ Are you sure you kick <b>%1</b> from %2?
+
+
+
+
+
+ Kick %1
+
+
+
+
+
+ Kick
+
+
+
+ CommunityMembersTabPanel
+
+
+
+
+ Kick
+
+
+
+
+
+ Ban
+
+
+
+
+
+ Unban
+
+
+
+
+
+ Accept
+
+
+
+
+
+ Reject
+
+
+
+ CommunityNameInput
+
+
+
+
+ Name your community
+
+
+
+
+
+ A catchy name
+
+
+
+
+
+ community name
+
+
+
+ CommunityNewPermissionView
+
+
+
+
+ Anyone
+
+
+
+
+
+ Who holds
+
+
+
+
+
+ Example: 10 SNT
+
+
+
+
+
+ and
+
+
+
+
+
+ or
+
+
+
+
+
+ ENS username on '%1' domain
+
+
+
+
+
+ Any ENS username
+
+
+
+
+
+ Is allowed to
+
+
+
+
+
+ Example: View and post
+
+
+
+
+
+ In
+
+
+
+
+
+ Example: `#general` channel
+
+
+
+
+
+ Private
+
+
+
+
+
+ Make this permission private to hide it from members who don’t meet it’s requirements
+
+
+
+
+
+ Create permission
+
+
+
+ CommunityOptions
+
+
+
+
+ Community history service
+
+
+
+
+
+ Request to join required
+
+
+
+
+
+ Any member can pin a message
+
+
+
+ CommunityOutroMessageInput
+
+
+
+
+ Leaving community message
+
+
+
+
+
+ The message a member will see when they leave your community
+
+
+
+
+
+ community intro message
+
+
+
+ CommunityOverviewSettingsPanel
+
+
+
+
+ Overview
+
+
+
+
+
+
+
+ Edit Community
+
+
+
+
+
+ This node is the Community Owner Node. For your Community to function correctly try to keep this computer with Status running and onlinie as much as possible.
+
+
+
+
+
+ Welcome to your community!
+
+
+
+
+
+ Invite new people
+
+
+
+
+
+ Try an airdrop to reward your community for engagement!
+
+
+
+
+
+ Airdrop Tokens
+
+
+
+
+
+ Back up community key
+
+
+
+
+
+ Back up
+
+
+
+ CommunityPermissionsSettingsPanel
+
+
+
+
+
+
+ Permissions
+
+
+
+
+
+ New permission
+
+
+
+ CommunityProfilePopup
+
+
+
+
+ Public community
+
+
+
+
+
+ Invitation only community
+
+
+
+
+
+ On request community
+
+
+
+
+
+ Unknown community
+
+
+
+
+
+ Invite friends
+
+
+
+
+
+ Invite
+
+
+
+ CommunityProfilePopupInviteFriendsPanel
+
+
+
+
+ Contacts
+
+
+
+
+
+ Search contacts
+
+
+
+
+
+ Share community
+
+
+
+
+
+ Copied!
+
+
+
+ CommunityProfilePopupInviteMessagePanel
+
+
+
+
+ Invitation Message
+
+
+
+
+
+ The message a contact will get with community invitation
+
+
+
+
+
+ Invites will be sent to:
+
+
+
+ CommunityProfilePopupOverviewPanel
+
+
+
+
+ Share community
+
+
+
+
+
+ Copied!
+
+
+
+
+
+ Transfer ownership
+
+
+
+
+
+ Leave community
+
+
+
+ CommunitySettingsView
+
+
+
+
+
+
+
+
+ Overview
+
+
+
+
+
+
+
+ Members
+
+
+
+
+
+ Permissions
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Open legacy popup (to be removed)
+
+
+
+
+
+ Back to community
+
+
+
+
+
+ Error editing the community
+
+
+
+ CommunityTagsPanel
+
+
+
+
+ Community Tags
+
+
+
+
+
+ Confirm Community Tags
+
+
+
+
+
+ Select tags that will fit your Community
+
+
+
+
+
+ Search tags
+
+
+
+
+
+ Selected tags
+
+
+
+
+
+ %1 / %2
+
+
+
+ CommunityTagsPicker
+
+
+
+
+ Tags
+
+
+
+
+
+ Choose tags describing the community
+
+
+
+ CommunityWelcomeBannerPanel
+
+
+
+
+ Welcome to your community!
+
+
+
+
+
+ Add members
+
+
+
+
+
+ Manage community
+
+
+
+ CommunityWelcomePermissionsView
+
+
+
+
+ Permissions
+
+
+
+
+
+ You can manage your community by creating and issuing membership and access permissions
+
+
+
+
+
+ Give individual members access to private channels
+
+
+
+
+
+ Monetise your community with subscriptions and fees
+
+
+
+
+
+ Require holding a token or NFT to obtain exclusive membership rights
+
+
+
+
+
+ Add permission
+
+
+
+ ConfirmAddExistingKeyModal
+
+
+
+
+ Enter seed phrase
+
+
+
+
+
+ Do you want to add another existing key?
+
+
+
+
+
+ Add another existing key
+
+
+
+ ConfirmAppRestartModal
+
+
+
+
+ Application Restart
+
+
+
+
+
+ Please restart the application to apply the changes.
+
+
+
+
+
+ Restart
+
+
+
+ ConfirmPasswordView
+
+
+
+
+ Passwords don't match
+
+
+
+
+
+ Have you written down your password?
+
+
+
+
+
+ You will never be able to recover your password if you lose it.
+
+
+
+
+
+ If you need to, write it using pen and paper and keep in a safe place.
+
+
+
+
+
+ If you lose your password you will lose access to your Status profile.
+
+
+
+
+
+ Confirm your password (again)
+
+
+
+
+
+ Finalise Status Password Creation
+
+
+
+ ConfirmSeedPhrasePanel
+
+
+
+
+ Write down your 12-word seed phrase to keep offline
+
+
+
+
+
+ Reveal seed phrase
+
+
+
+
+
+ The next screen contains your seed phrase.
+<b>Anyone</b> who sees it can use it to access to your funds.
+
+
+
+ ConfirmStoringSeedPhrasePanel
+
+
+
+
+ Complete back up
+
+
+
+
+
+ Store Your Phrase Offline and Complete Your Back Up
+
+
+
+
+
+ By completing this process, you will remove your seed phrase from this application’s storage. This makes your funds more secure.
+
+
+
+
+
+ You will remain logged in, and your seed phrase will be entirely in your hands.
+
+
+
+
+
+ I acknowledge that Status will not be able to show me my seed phrase again.
+
+
+
+ ConfirmationDialog
+
+
+
+
+ Confirm
+
+
+
+
+
+ Reject
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ Are you sure you want to do this?
+
+
+
+
+
+ Confirm your action
+
+
+
+
+
+ Do not show this again
+
+
+
+ ConfirmationPopup
+
+
+
+
+ Enable Tenor GIFs?
+
+
+
+
+
+ Once enabled, GIFs posted in the chat may share your metadata with Tenor.
+
+
+
+
+
+ Enable
+
+
+
+ Constants
+
+
+
+
+ Username must be at least 5 characters
+
+
+
+
+
+ Only letters, numbers, underscores and hyphens allowed
+
+
+
+
+
+ 24 character username limit
+
+
+
+
+
+ Usernames ending with '-eth' are not allowed
+
+
+
+
+
+ Usernames ending with '_eth' are not allowed
+
+
+
+
+
+ Usernames ending with '.eth' are not allowed
+
+
+
+
+
+ Sorry, the name you have chosen is not allowed, try picking another username
+
+
+
+
+
+ (edited)
+
+
+
+
+
+ Username already taken :(
+
+
+
+
+
+ Username doesn’t belong to you :(
+
+
+
+
+
+ Continuing will connect this username with your chat key.
+
+
+
+
+
+ ✓ Username available!
+
+
+
+
+
+ Username is already connected with your chat key and can be used inside Status.
+
+
+
+
+
+ This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`.
+
+
+
+
+
+ Continuing will require a transaction to connect the username with your current chat key.
+
+
+
+ Contact
+
+
+
+
+ Admin
+
+
+
+ ContactPanel
+
+
+
+
+ Respond to ID Request
+
+
+
+
+
+ See ID Request
+
+
+
+ ContactRequestCta
+
+
+
+
+ Accepted
+
+
+
+
+
+ Declined & Blocked
+
+
+
+
+
+ Declined
+
+
+
+ ContactRequestsPopup
+
+
+
+
+ Contact requests
+
+
+
+
+
+ Decline all contacts
+
+
+
+
+
+ Are you sure you want to decline all these contact requests
+
+
+
+
+
+ Accept all contacts
+
+
+
+
+
+ Are you sure you want to accept all these contact requests
+
+
+
+
+
+ Decline all
+
+
+
+
+
+ Accept all
+
+
+
+ ContactSelector
+
+
+
+
+ Please select a contact
+
+
+
+
+
+ Select a contact
+
+
+
+
+
+ Contact does not have an ENS address. Please send a transaction in chat.
+
+
+
+
+
+ No contact selected
+
+
+
+
+
+ You don’t have any contacts yet
+
+
+
+ ContactVerificationRequestPopup
+
+
+
+
+ %1 is asking you to verify your identity
+
+
+
+
+
+ %1 would like to verify your identity. Answer the question to prove your identity to %2
+
+
+
+
+
+ Provide answer to verification request from this contact.
+
+
+
+
+
+ Your answer has been sent to %1.
+
+
+
+
+
+ Refuse Verification
+
+
+
+
+
+ Send Answer
+
+
+
+
+
+ Change answer
+
+
+
+
+
+ Close
+
+
+
+ ContactsColumnView
+
+
+
+
+ Chat
+
+
+
+
+
+ Join public chats
+
+
+
+
+
+ Start chat
+
+
+
+
+
+ Search
+
+
+
+
+
+ Contact requests
+
+
+
+
+
+ Community imported
+
+
+
+
+
+ Importing community is in progress
+
+
+
+ ContactsListAndSearch
+
+
+
+
+ Enter a valid chat key or ENS username
+
+
+
+
+
+
+
+ Can't chat with yourself
+
+
+
+
+
+ Enter ENS username or chat key
+
+
+
+ ContactsListPanel
+
+
+
+
+ Contact Request Sent
+
+
+
+
+
+ Contact Request Rejected
+
+
+
+ ContactsView
+
+
+
+
+ Send contact request to chat key
+
+
+
+
+
+ Search by a display name or chat key
+
+
+
+
+
+
+
+ Contacts
+
+
+
+
+
+ Pending Requests
+
+
+
+
+
+ Blocked
+
+
+
+
+
+ Identity Verified Contacts
+
+
+
+
+
+ You don’t have any contacts yet
+
+
+
+
+
+ Received
+
+
+
+
+
+ Sent
+
+
+
+ Controls
+
+
+
+
+ XS
+
+
+
+
+
+ S
+
+
+
+
+
+ M
+
+
+
+
+
+ L
+
+
+
+
+
+ XL
+
+
+
+
+
+ XXL
+
+
+
+
+
+ 50%
+
+
+
+
+
+ 100%
+
+
+
+
+
+ 150%
+
+
+
+
+
+ 200%
+
+
+
+ CopyToClipBoardButton
+
+
+
+
+ Copied!
+
+
+
+ CreateCategoryPopup
+
+
+
+
+ Edit category
+
+
+
+
+
+ New category
+
+
+
+
+
+ Category title
+
+
+
+
+
+ Name the category
+
+
+
+
+
+ category name
+
+
+
+
+
+ Channels
+
+
+
+
+
+ Delete category
+
+
+
+
+
+ Delete %1 category
+
+
+
+
+
+ Are you sure you want to delete %1 category? Channels inside the category won’t be deleted.
+
+
+
+
+
+ Save
+
+
+
+
+
+ Create
+
+
+
+
+
+ Error editing the category
+
+
+
+
+
+ Error creating the category
+
+
+
+ CreateChannelPopup
+
+
+
+
+ New channel
+
+
+
+
+
+ Edit #%1
+
+
+
+
+
+ Channel name
+
+
+
+
+
+ # Name the channel
+
+
+
+
+
+ channel name
+
+
+
+
+
+ Channel colour
+
+
+
+
+
+ Pick a color
+
+
+
+
+
+ Description
+
+
+
+
+
+ Describe the channel
+
+
+
+
+
+ channel description
+
+
+
+
+
+ Delete channel
+
+
+
+
+
+ Save changes
+
+
+
+
+
+ Create channel
+
+
+
+
+
+ Error creating the community
+
+
+
+ CreateChatView
+
+
+
+
+ To:
+
+
+
+
+
+ USER LIMIT REACHED
+
+
+
+
+
+
+
+ Contacts
+
+
+
+
+
+
+
+ You can only send direct messages to your Contacts.
+
+Send a contact request to the person you would like to chat with, you will be able to chat with them once they have accepted your contact request.
+
+
+
+ CreateCommunityPopup
+
+
+
+
+ Import a community from Discord into Status
+
+
+
+
+
+ Create New Community
+
+
+
+
+
+ Next
+
+
+
+
+
+ Start Discord import
+
+
+
+
+
+ Create Community
+
+
+
+
+
+ Clear all
+
+
+
+
+
+ Proceed with (%1/%2) files
+
+
+
+
+
+ Validate (%1/%2) files
+
+
+
+
+
+ Import files
+
+
+
+
+
+ Select Discord JSON files to import
+
+
+
+
+
+ Some of your community files cannot be used
+
+
+
+
+
+ Uncheck any files you would like to exclude from the import
+
+
+
+
+
+ (JSON file format only)
+
+
+
+
+
+ Browse files
+
+
+
+
+
+ Export your Discord JSON data using %1
+
+
+
+
+
+ Refer to this <a href='https://github.com/Tyrrrz/DiscordChatExporter/wiki'>wiki</a> if you have any queries
+
+
+
+
+
+ Choose files to import
+
+
+
+
+
+ JSON files (%1)
+
+
+
+
+
+ Please select the categories and channels you would like to import
+
+
+
+
+
+ Import all history
+
+
+
+
+
+ Start date
+
+
+
+
+
+ Error creating the community
+
+
+
+ CreatePasswordModal
+
+
+
+
+
+
+ Store password
+
+
+
+
+
+ Current password...
+
+
+
+
+
+ Confirm password…
+
+
+
+
+
+ Enter new PIN
+
+
+
+
+
+ Repeat PIN
+
+
+
+
+
+ Store PIN
+
+
+
+
+
+ Error importing account
+
+
+
+
+
+ An error occurred while importing your account:
+
+
+
+
+
+ Login failed
+
+
+
+
+
+ Login failed. Please re-enter your password and try again.
+
+
+
+
+
+ Incorrect password
+
+
+
+ CreatePasswordView
+
+
+
+
+ Create password
+
+
+
+ CryptoServicesModal
+
+
+
+
+ Buy / Sell crypto
+
+
+
+
+
+ Choose a service you'd like to use to buy crypto
+
+
+
+ CurrenciesStore
+
+
+
+
+
+
+ US Dollars
+
+
+
+
+
+
+
+ British Pound
+
+
+
+
+
+
+
+ Euros
+
+
+
+
+
+
+
+ Russian ruble
+
+
+
+
+
+
+
+ South Korean won
+
+
+
+
+
+
+
+ Ethereum
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Tokens
+
+
+
+
+
+
+
+ Bitcoin
+
+
+
+
+
+
+
+ Status Network Token
+
+
+
+
+
+
+
+ Dai
+
+
+
+
+
+
+
+ United Arab Emirates dirham
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Other Fiat
+
+
+
+
+
+
+
+ Afghan afghani
+
+
+
+
+
+
+
+ Argentine peso
+
+
+
+
+
+
+
+ Australian dollar
+
+
+
+
+
+
+
+ Barbadian dollar
+
+
+
+
+
+
+
+ Bangladeshi taka
+
+
+
+
+
+
+
+ Bulgarian lev
+
+
+
+
+
+
+
+ Bahraini dinar
+
+
+
+
+
+
+
+ Brunei dollar
+
+
+
+
+
+
+
+ Bolivian boliviano
+
+
+
+
+
+
+
+ Brazillian real
+
+
+
+
+
+
+
+ Bhutanese ngultrum
+
+
+
+
+
+
+
+ Canadian dollar
+
+
+
+
+
+
+
+ Swiss franc
+
+
+
+
+
+
+
+ Chilean peso
+
+
+
+
+
+
+
+ Chinese yuan
+
+
+
+
+
+
+
+ Colombian peso
+
+
+
+
+
+
+
+ Costa Rican colón
+
+
+
+
+
+
+
+ Czech koruna
+
+
+
+
+
+
+
+ Danish krone
+
+
+
+
+
+
+
+ Dominican peso
+
+
+
+
+
+
+
+ Egyptian pound
+
+
+
+
+
+
+
+ Ethiopian birr
+
+
+
+
+
+
+
+ Georgian lari
+
+
+
+
+
+
+
+ Ghanaian cedi
+
+
+
+
+
+
+
+ Hong Kong dollar
+
+
+
+
+
+
+
+ Croatian kuna
+
+
+
+
+
+
+
+ Hungarian forint
+
+
+
+
+
+
+
+ Indonesian rupiah
+
+
+
+
+
+
+
+ Israeli new shekel
+
+
+
+
+
+
+
+ Indian rupee
+
+
+
+
+
+
+
+ Icelandic króna
+
+
+
+
+
+
+
+ Jamaican dollar
+
+
+
+
+
+
+
+ Japanese yen
+
+
+
+
+
+
+
+ Kenyan shilling
+
+
+
+
+
+
+
+ Kuwaiti dinar
+
+
+
+
+
+
+
+ Kazakhstani tenge
+
+
+
+
+
+
+
+ Sri Lankan rupee
+
+
+
+
+
+
+
+ Moroccan dirham
+
+
+
+
+
+
+
+ Moldovan leu
+
+
+
+
+
+
+
+ Mauritian rupee
+
+
+
+
+
+
+
+ Malawian kwacha
+
+
+
+
+
+
+
+ Mexican peso
+
+
+
+
+
+
+
+ Malaysian ringgit
+
+
+
+
+
+
+
+ Mozambican metical
+
+
+
+
+
+
+
+ Namibian dollar
+
+
+
+
+
+
+
+ Nigerian naira
+
+
+
+
+
+
+
+ Norwegian krone
+
+
+
+
+
+
+
+ Nepalese rupee
+
+
+
+
+
+
+
+ New Zealand dollar
+
+
+
+
+
+
+
+ Omani rial
+
+
+
+
+
+
+
+ Peruvian sol
+
+
+
+
+
+
+
+ Papua New Guinean kina
+
+
+
+
+
+
+
+ Philippine peso
+
+
+
+
+
+
+
+ Pakistani rupee
+
+
+
+
+
+
+
+ Polish złoty
+
+
+
+
+
+
+
+ Paraguayan guaraní
+
+
+
+
+
+
+
+ Qatari riyal
+
+
+
+
+
+
+
+ Romanian leu
+
+
+
+
+
+
+
+ Serbian dinar
+
+
+
+
+
+
+
+ Saudi riyal
+
+
+
+
+
+
+
+ Swedish krona
+
+
+
+
+
+
+
+ Singapore dollar
+
+
+
+
+
+
+
+ Thai baht
+
+
+
+
+
+
+
+ Trinidad and Tobago dollar
+
+
+
+
+
+
+
+ New Taiwan dollar
+
+
+
+
+
+
+
+ Tanzanian shilling
+
+
+
+
+
+
+
+ Turkish lira
+
+
+
+
+
+
+
+ Ukrainian hryvnia
+
+
+
+
+
+
+
+ Ugandan shilling
+
+
+
+
+
+
+
+ Uruguayan peso
+
+
+
+
+
+
+
+ Venezuelan bolívar
+
+
+
+
+
+
+
+ Vietnamese đồng
+
+
+
+
+
+
+
+ South African rand
+
+
+
+ CustomSocialLinkInput
+
+
+
+
+ Hyperlink Text
+
+
+
+
+
+ Example: My Myspace Profile
+
+
+
+
+
+ URL
+
+
+
+
+
+ Link URL
+
+
+
+
+
+ Preview
+
+
+
+
+
+ My Myspace Profile
+
+
+
+
+
+ Remove
+
+
+
+ DefaultDAppExplorerView
+
+
+
+
+ Default DApp explorer
+
+
+
+
+
+ none
+
+
+
+ DemoApp
+
+
+
+
+ Invite People
+
+
+
+
+
+ View Community
+
+
+
+
+
+ Edit Community
+
+
+
+
+
+ Leave Community
+
+
+
+ DerivationPathsPanel
+
+
+
+
+ Derivation Path
+
+
+
+
+
+ Reset
+
+
+
+ DerivedAddressesPanel
+
+
+
+
+ No activity
+
+
+
+
+
+ Pending
+
+
+
+
+
+ Invalid path
+
+
+
+
+
+
+
+
+
+ Has Activity
+
+
+
+
+
+
+
+
+
+ No Activity
+
+
+
+
+
+ Account
+
+
+
+ DetailsView
+
+
+
+
+ Configure your Keycard
+
+
+
+
+
+ Rename Keycard
+
+
+
+
+
+ Change PIN
+
+
+
+
+
+ Create a backup copy of this Keycard
+
+
+
+
+
+ Unlock Keycard
+
+
+
+
+
+ Advanced
+
+
+
+
+
+ Create a 12-digit personal unblocking key (PUK)
+
+
+
+
+
+ Create a new pairing code
+
+
+
+ DevicesView
+
+
+
+
+ Please set a name for your device.
+
+
+
+
+
+ Specify a name
+
+
+
+
+
+ Continue
+
+
+
+
+
+ Advertise device
+
+
+
+
+
+ Pair your devices to sync contacts and chats between them
+
+
+
+
+
+ Learn more
+
+
+
+
+
+ Paired devices
+
+
+
+
+
+ Syncing...
+
+
+
+
+
+ Sync all devices
+
+
+
+ DiscordImportProgressContents
+
+
+
+
+ Delete community & restart import
+
+
+
+
+
+ Cancel import
+
+
+
+
+
+ Restart import
+
+
+
+
+
+ Hide window
+
+
+
+
+
+ Visit your new community
+
+
+
+
+
+ Setting up your community
+
+
+
+
+
+ Importing channels
+
+
+
+
+
+ Importing messages
+
+
+
+
+
+ Downloading assets
+
+
+
+
+
+ Initializing community
+
+
+
+
+
+ ✓ Complete
+
+
+
+
+
+ Import stopped...
+
+
+
+
+
+ Pending...
+
+
+
+
+
+ Saving... This can take a moment, almost done!
+
+
+
+
+
+ Working...
+
+
+
+
+
+ %1%
+
+
+
+
+
+ %1 more issue(s) downloading assets
+
+
+
+
+
+ Importing ‘%1’ from Discord...
+
+
+
+
+
+ Importing ‘%1’ from Discord stopped...
+
+
+
+
+
+ Importing ‘%1’ stopped due to a critical issue...
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ‘%1’ was successfully imported from Discord.
+
+
+
+
+
+ Your Discord community import is in progress...
+
+
+
+
+
+ This process can take a while. Feel free to hide this window and use Status normally in the meantime. We’ll notify you when the Community is ready for you.
+
+
+
+
+
+ If there were any issues with your import you can upload new JSON files via the community page at any time.
+
+
+
+
+
+ Are you sure you want to cancel the import?
+
+
+
+
+
+ Your new Status community will be deleted and all information entered will be lost.
+
+
+
+
+
+ Delete community
+
+
+
+
+
+ Continue importing
+
+
+
+ DiscordImportProgressDialog
+
+
+
+
+ Import a community from Discord into Status
+
+
+
+ DisplayNamePopup
+
+
+
+
+ Edit
+
+
+
+
+
+ Display Name
+
+
+
+
+
+ OK
+
+
+
+ DownloadBar
+
+
+
+
+ Cancelled
+
+
+
+
+
+ Paused
+
+
+
+
+
+ Show All
+
+
+
+ DownloadMenu
+
+
+
+
+ Open
+
+
+
+
+
+ Show in folder
+
+
+
+
+
+ Pause
+
+
+
+
+
+ Resume
+
+
+
+
+
+ Cancel
+
+
+
+ DownloadPage
+
+
+
+
+ Thanks for using Status
+
+
+
+
+
+ You're curently using version %1 of Status.
+
+
+
+
+
+ There's new version available to download.
+
+
+
+
+
+ Get Status %1
+
+
+
+ DownloadView
+
+
+
+
+ Cancelled
+
+
+
+
+
+ Paused
+
+
+
+
+
+ Downloaded files will appear here.
+
+
+
+ ENSPopup
+
+
+
+
+ Primary username
+
+
+
+
+
+ Your messages are displayed to others with this username:
+
+
+
+
+
+ Once you select a username, you won’t be able to disable it afterwards. You will only be able choose a different username to display.
+
+
+
+ EmptyChatPanel
+
+
+
+
+ Share your chat key
+
+
+
+
+
+ or
+
+
+
+
+
+ invite
+
+
+
+
+
+ friends to start messaging in Status
+
+
+
+ EmptyPlaceholder
+
+
+
+
+ Favorite GIFs will appear here
+
+
+
+
+
+ Recent GIFs will appear here
+
+
+
+
+
+ Error while contacting Tenor API, please retry.
+
+
+
+
+
+ Retry
+
+
+
+ EnsAddedView
+
+
+
+
+ ENS usernames
+
+
+
+
+
+ Username added
+
+
+
+
+
+ %1 is now connected with your chat key and can be used in Status.
+
+
+
+
+
+ Ok, got it
+
+
+
+ EnsConnectedView
+
+
+
+
+ ENS usernames
+
+
+
+
+
+ Username added
+
+
+
+
+
+ %1 will be connected once the transaction is complete.
+
+
+
+
+
+ You can follow the progress in the Transaction History section of your wallet.
+
+
+
+
+
+ Ok, got it
+
+
+
+ EnsDetailsView
+
+
+
+
+ Wallet address
+
+
+
+
+
+
+
+ Copied to clipboard!
+
+
+
+
+
+ Key
+
+
+
+
+
+ Release your username
+
+
+
+
+
+ Release username
+
+
+
+
+
+ Username locked. You won't be able to release it until %1
+
+
+
+
+
+ Back
+
+
+
+ EnsListView
+
+
+
+
+ Hey
+
+
+
+
+
+
+
+ (pending)
+
+
+
+
+
+ ENS usernames
+
+
+
+
+
+ Add username
+
+
+
+
+
+ Your usernames
+
+
+
+
+
+ Chat settings
+
+
+
+
+
+ Primary Username
+
+
+
+
+
+ None selected
+
+
+
+
+
+ You’re displaying your ENS username in chats
+
+
+
+ EnsPanel
+
+
+
+
+ Any domain
+
+
+
+
+
+ Custom subdomain
+
+
+
+
+
+ Subdomain not recognized
+
+
+
+ EnsRegisteredView
+
+
+
+
+ ENS usernames
+
+
+
+
+
+ Username added
+
+
+
+
+
+ Nice! You own %1.stateofus.eth once the transaction is complete.
+
+
+
+
+
+ You can follow the progress in the Transaction History section of your wallet.
+
+
+
+
+
+ Ok, got it
+
+
+
+ EnsReleasedView
+
+
+
+
+ ENS usernames
+
+
+
+
+
+ Username removed
+
+
+
+
+
+ The username %1 will be removed and your deposit will be returned once the transaction is mined
+
+
+
+
+
+ You can follow the progress in the Transaction History section of your wallet.
+
+
+
+
+
+ Ok, got it
+
+
+
+ EnsSearchView
+
+
+
+
+ At least 4 characters. Latin letters, numbers, and lowercase only.
+
+
+
+
+
+ Letters and numbers only.
+
+
+
+
+
+ Type the entire username including the custom domain like username.domain.eth
+
+
+
+
+
+ Connect username with your pubkey
+
+
+
+
+
+ Custom domain
+
+
+
+
+
+ I want a stateofus.eth domain
+
+
+
+
+
+ I own a name on another domain
+
+
+
+ EnsTermsAndConditionsView
+
+
+
+
+ ENS usernames
+
+
+
+
+
+ Terms of name registration
+
+
+
+
+
+ Funds are deposited for 1 year. Your SNT will be locked, but not spent.
+
+
+
+
+
+ After 1 year, you can release the name and get your deposit back, or take no action to keep the name.
+
+
+
+
+
+ If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held.
+
+
+
+
+
+ The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them.
+
+
+
+
+
+ Your address(es) will be publicly associated with your ENS name.
+
+
+
+
+
+ Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms.
+
+
+
+
+
+ You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer.
+
+
+
+
+
+ These terms are guaranteed by the smart contract logic at addresses:
+
+
+
+
+
+ %1 (Status UsernameRegistrar).
+
+
+
+
+
+
+
+ <a href='%1%2'>Look up on Etherscan</a>
+
+
+
+
+
+ %1 (ENS Registry).
+
+
+
+
+
+ Wallet address
+
+
+
+
+
+
+
+ Copied to clipboard!
+
+
+
+
+
+ Key
+
+
+
+
+
+ Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username.
+
+
+
+
+
+ Back
+
+
+
+
+
+ 10 SNT
+
+
+
+
+
+ Deposit
+
+
+
+
+
+ Not enough SNT
+
+
+
+
+
+ Register
+
+
+
+ EnsView
+
+
+
+
+
+
+ Transaction pending...
+
+
+
+
+
+
+
+ View on etherscan
+
+
+
+
+
+ ENS Registration failed
+
+
+
+
+
+ ENS Registration completed
+
+
+
+
+
+ Updating ENS pubkey failed
+
+
+
+
+
+ Updating ENS pubkey completed
+
+
+
+ EnsWelcomeView
+
+
+
+
+ Get a universal username
+
+
+
+
+
+ ENS names transform those crazy-long addresses into unique usernames.
+
+
+
+
+
+ Customize your chat name
+
+
+
+
+
+ An ENS name can replace your random 3-word name in chat. Be @yourname instead of %1.
+
+
+
+
+
+ Simplify your ETH address
+
+
+
+
+
+ You can receive funds to your easy-to-share ENS name rather than your hexadecimal hash (0x...).
+
+
+
+
+
+ Receive transactions in chat
+
+
+
+
+
+ Others can send you funds via chat in one simple step.
+
+
+
+
+
+ 10 SNT to register
+
+
+
+
+
+ Register once to keep the name forever. After 1 year you can release the name and get your SNT back.
+
+
+
+
+
+ Already own a username?
+
+
+
+
+
+ You can verify and add any usernames you own in the next steps.
+
+
+
+
+
+ Powered by Ethereum Name Services
+
+
+
+
+
+ Start
+
+
+
+
+
+ Only available on Mainnet
+
+
+
+ EnterName
+
+
+
+
+ Keycard name
+
+
+
+
+
+ Preview
+
+
+
+
+
+ Rename this Keycard
+
+
+
+ EnterPassword
+
+
+
+
+ Password
+
+
+
+
+
+
+
+ Enter your password
+
+
+
+
+
+
+
+
+
+ Password incorrect
+
+
+
+
+
+
+
+ Password changed on other device
+
+
+
+
+
+
+
+ Enter your new password to proceed
+
+
+
+ EnterSeedPhrase
+
+
+
+
+ The phrase you’ve entered does not match this Keycard’s seed phrase
+
+
+
+
+
+ Invalid seed phrase
+
+
+
+
+
+ The phrase you’ve entered is invalid
+
+
+
+
+
+ Enter key pair seed phrase
+
+
+
+
+
+
+
+
+
+
+
+ EnterSeedPhraseWords
+
+
+
+
+ Confirm seed phrase words
+
+
+
+
+
+
+
+
+
+ Word #%1
+
+
+
+
+
+
+
+
+
+ Enter word
+
+
+
+
+
+
+
+
+
+ This word doesn’t match
+
+
+
+ ExemptionNotificationsModal
+
+
+
+
+ %1 exemption
+
+
+
+
+
+ Mute all messages
+
+
+
+
+
+ Personal @ Mentions
+
+
+
+
+
+ Global @ Mentions
+
+
+
+
+
+ Other Messages
+
+
+
+
+
+ Clear Exemptions
+
+
+
+
+
+ Done
+
+
+
+ ExtendedDropdownContent
+
+
+
+
+ Most viewed
+
+
+
+
+
+ Newest first
+
+
+
+
+
+ Oldest first
+
+
+
+
+
+ List
+
+
+
+
+
+ Thumbnails
+
+
+
+
+
+ Mint token
+
+
+
+
+
+ Import existing token
+
+
+
+
+
+ Mint collectible
+
+
+
+ FavoriteMenu
+
+
+
+
+ Open in new Tab
+
+
+
+
+
+ Edit
+
+
+
+
+
+ Remove
+
+
+
+ FetchMoreMessagesButton
+
+
+
+
+ ↓ Fetch more messages
+
+
+
+
+
+ Before %1
+
+
+
+ FleetRadioSelector
+
+
+
+
+ Warning!
+
+
+
+
+
+ Change fleet to %1
+
+
+
+ FleetsModal
+
+
+
+
+ Fleet
+
+
+
+ GapComponent
+
+
+
+
+ Fetch messages
+
+
+
+
+
+ Between %1 and %2
+
+
+
+ GasSelector
+
+
+
+
+ Must be greater than 0
+
+
+
+
+
+ This needs to be a number
+
+
+
+
+
+ Please enter an amount
+
+
+
+
+
+ Min 21000 units
+
+
+
+
+
+ Not enough gas
+
+
+
+
+
+ Miners will currently not process transactions with a tip below %1 Gwei, the average is %2 Gwei
+
+
+
+
+
+ The average miner tip is %1 Gwei
+
+
+
+
+
+ Priority
+
+
+
+
+
+ Gas Price
+
+
+
+
+
+ Current base fee: %1 %2
+
+
+
+
+
+ Use suggestions
+
+
+
+
+
+ Use custom
+
+
+
+
+
+ Low
+
+
+
+
+
+ Optimal
+
+
+
+
+
+ High
+
+
+
+
+
+ Gas amount limit
+
+
+
+
+
+ Per-gas tip limit
+
+
+
+
+
+
+
+ Gwei
+
+
+
+
+
+ Per-gas overall limit
+
+
+
+
+
+ Maximum priority fee: %1 ETH
+
+
+
+
+
+ Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee.
+
+
+
+ GasSelectorButton
+
+
+
+
+ Low
+
+
+
+ GasValidator
+
+
+
+
+ Not enough ETH for gas
+
+
+
+ Global
+
+
+
+
+ Verify %1's Identity
+
+
+
+
+
+ Ask a question that only the real %1 will be able to answer e.g. a question about a shared experience, or ask %1 to enter a code or phrase you have sent to them via a different communication channel (phone, post, etc...).
+
+
+
+
+
+ Send verification request
+
+
+
+ HistoryView
+
+
+
+
+ Status Desktop is connected to a non-archival node. Transaction history may be incomplete.
+
+
+
+
+
+ No transactions found
+
+
+
+
+
+ Load More
+
+
+
+ HoldingsDropdown
+
+
+
+
+ Choose token
+
+
+
+
+
+ Choose collectible
+
+
+
+
+
+ Back
+
+
+
+
+
+ Token
+
+
+
+
+
+ Collectible
+
+
+
+
+
+ ENS
+
+
+
+ HoldingsTabs
+
+
+
+
+ Add
+
+
+
+
+
+ Update
+
+
+
+
+
+ Remove
+
+
+
+ HomePageView
+
+
+
+
+ homepage
+
+
+
+
+
+ System default
+
+
+
+
+
+ Other
+
+
+
+
+
+ Example: duckduckgo.com
+
+
+
+ ImageCropWorkflow
+
+
+
+
+ Supported image formats (%1)
+
+
+
+ ImportCommunityPopup
+
+
+
+
+ Import Community
+
+
+
+
+
+ Entering a community key will grant you the ownership of that community. Please be responsible with it and don’t share the key with people you don’t trust.
+
+
+
+
+
+ Community private key
+
+
+
+
+
+ Import
+
+
+
+ ImportPrivateKeyPanel
+
+
+
+
+
+
+ You need to enter a private key
+
+
+
+
+
+
+
+ Enter a valid private key (64 characters hexadecimal string)
+
+
+
+
+
+ Private key
+
+
+
+
+
+ Paste the contents of your private key
+
+
+
+
+
+ Enter a valid private key
+
+
+
+
+
+ Public address
+
+
+
+
+
+ Account already added
+
+
+
+
+
+ Pending
+
+
+
+
+
+ Has Activity
+
+
+
+
+
+ No Activity
+
+
+
+ ImportSeedPhrasePanel
+
+
+
+
+
+
+ Invalid seed phrase
+
+
+
+
+
+ This seed phrase doesn't match our supported dictionary. Check for misspelled words.
+
+
+
+
+
+
+
+
+
+
+
+ InlineSelectorPanel
+
+
+
+
+ Confirm
+
+
+
+
+
+ Reject
+
+
+
+ Input
+
+
+
+
+ Copied
+
+
+
+
+
+ Pasted
+
+
+
+
+
+ Copy
+
+
+
+
+
+ Paste
+
+
+
+ InsertDetailsView
+
+
+
+
+
+
+ Your profile
+
+
+
+
+
+
+
+ Longer and unusual names are better as they are less likely to be used by someone else.
+
+
+
+
+
+ Display name
+
+
+
+
+
+ Chatkey:
+
+
+
+
+
+ Next
+
+
+
+
+
+ Choose an image for profile picture
+
+
+
+
+
+ Profile picture
+
+
+
+
+
+ Make this my profile picture
+
+
+
+
+
+ Your emojihash and identicon ring
+
+
+
+
+
+ This set of emojis and coloured ring around your avatar are unique and represent your chat key, so your friends can easily distinguish you from potential impersonators.
+
+
+
+ InvitationBubbleView
+
+
+
+
+ Verified community invitation
+
+
+
+
+
+ Community invitation
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Go to Community
+
+
+
+ InviteFriendsPopup
+
+
+
+
+ Get Status at https://status.im
+
+
+
+
+
+ Download Status link
+
+
+
+
+
+ Copy to clipboard
+
+
+
+ InviteFriendsToCommunityPopup
+
+
+
+
+ Invite successfully sent
+
+
+
+
+
+ Invite Contacts to %1
+
+
+
+
+
+ Next
+
+
+
+
+
+ Send Invites
+
+
+
+ IssuePill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ JSDialogWindow
+
+
+
+
+ Ok
+
+
+
+
+
+ Cancel
+
+
+
+ KeyPairItem
+
+
+
+
+ Keycard Locked
+
+
+
+ KeyPairUnknownItem
+
+
+
+
+ Active Accounts
+
+
+
+ KeycardConfirmation
+
+
+
+
+ A factory reset will delete the key on this Keycard.
+Are you sure you want to do this?
+
+
+
+
+
+ I understand the key pair on this Keycard will be deleted
+
+
+
+ KeycardCreatePINModal
+
+
+
+
+
+
+ Create PIN
+
+
+
+
+
+ New PIN
+
+
+
+
+
+ Confirm PIN
+
+
+
+
+
+ Create a 6 digit long PIN
+
+
+
+ KeycardInit
+
+
+
+
+ Plug in Keycard reader...
+
+
+
+
+
+ Insert Keycard...
+
+
+
+
+
+ Check the card, it might be wrongly inserted
+
+
+
+
+
+ Keycard inserted...
+
+
+
+
+
+ Reading Keycard...
+
+
+
+
+
+ Migrating key pair to Keycard
+
+
+
+
+
+ Renaming keycard...
+
+
+
+
+
+ This is not a Keycard
+
+
+
+
+
+ The card inserted is not a recognised Keycard,
+please remove and try and again
+
+
+
+
+
+ Unlock this Keycard
+
+
+
+
+
+ Wrong Keycard inserted
+
+
+
+
+
+ Keycard inserted does not match the Keycard below
+
+
+
+
+
+ Keycard inserted does not match the Keycard you're trying to unlock
+
+
+
+
+
+ This Keycard has empty metadata
+
+
+
+
+
+ This Keycard already stores keys
+but doesn't store any metadata
+
+
+
+
+
+ Keycard is empty
+
+
+
+
+
+ There is no key pair on this Keycard
+
+
+
+
+
+ This Keycard already stores keys
+
+
+
+
+
+ To migrate %1 on to this Keycard, you
+will need to perform a factory reset first
+
+
+
+
+
+ Keycard locked and already stores keys
+
+
+
+
+
+ Keycard locked
+
+
+
+
+
+ The Keycard you have inserted is locked,
+you will need to factory reset it before proceeding
+
+
+
+
+
+ You will need to unlock it before proceeding
+
+
+
+
+
+ Pin entered incorrectly too many times
+
+
+
+
+
+ Puk entered incorrectly too many times
+
+
+
+
+
+ Max pairing slots reached for the entered keycard
+
+
+
+
+
+ Your Keycard is already unlocked!
+
+
+
+
+
+ Unlock successful
+
+
+
+
+
+ Keycard recognized
+
+
+
+
+
+ Your Keycard has been reset
+
+
+
+
+
+ Keycard successfully factory reset
+
+
+
+
+
+ You can now create a new key pair on this Keycard
+
+
+
+
+
+ You can now use this Keycard as if it
+was a brand new empty Keycard
+
+
+
+
+
+ Key pair successfully migrated
+
+
+
+
+
+ Keycard successfully renamed
+
+
+
+
+
+ To complete migration close Status and log in with your new Keycard
+
+
+
+
+
+ Key pair failed to migrated
+
+
+
+
+
+ Keycard renaming failed
+
+
+
+
+
+ Accounts on this Keycard
+
+
+
+
+
+ Ready to authenticate...
+
+
+
+
+
+
+
+ Biometric scan failed
+
+
+
+
+
+
+
+ Biometrics incorrect
+
+
+
+
+
+ Biometric pin invalid
+
+
+
+
+
+ The PIN length doesn't match Keycard's PIN length
+
+
+
+ KeycardInitView
+
+
+
+
+ Plug in Keycard reader...
+
+
+
+
+
+ Insert your Keycard...
+
+
+
+
+
+ Check the card, it might be wrongly inserted
+
+
+
+
+
+ Keycard inserted...
+
+
+
+
+
+ Reading Keycard...
+
+
+
+
+
+ Keycard recognized
+
+
+
+ KeycardItem
+
+
+
+
+ Keycard Locked
+
+
+
+ KeycardPin
+
+
+
+
+
+
+
+
+ It is very important that you do not lose this PIN
+
+
+
+
+
+ PINs don't match
+
+
+
+
+
+ Enter this Keycard’s PIN
+
+
+
+
+
+ Enter Keycard PIN
+
+
+
+
+
+
+
+ PIN incorrect
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Your saved PIN is out of date
+
+
+
+
+
+ Enter your new PIN to proceed
+
+
+
+
+
+ Choose a Keycard PIN
+
+
+
+
+
+ Repeat Keycard PIN
+
+
+
+
+
+ Keycard PIN set
+
+
+
+
+
+ Keycard PIN verified!
+
+
+
+ KeycardPinView
+
+
+
+
+
+
+
+
+ It is very important that you do not lose this PIN
+
+
+
+
+
+ PINs don't match
+
+
+
+
+
+ Create new Keycard PIN
+
+
+
+
+
+ Repeat Keycard PIN
+
+
+
+
+
+ Keycard PIN set
+
+
+
+
+
+
+
+ Enter Keycard PIN
+
+
+
+
+
+ PIN incorrect
+
+
+
+
+
+
+
+
+
+
+
+ KeycardPopup
+
+
+
+
+ Set up a new Keycard with an existing account
+
+
+
+
+
+ Factory reset a Keycard
+
+
+
+
+
+
+
+ Authenticate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Unlock Keycard
+
+
+
+
+
+ Check what’s on a Keycard
+
+
+
+
+
+ Rename Keycard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ Use biometrics instead
+
+
+
+
+
+ Use password instead
+
+
+
+
+
+ Use biometrics
+
+
+
+
+
+ Use PIN
+
+
+
+
+
+ Update PIN
+
+
+
+
+
+ Unlock using PUK
+
+
+
+
+
+ Input seed phrase
+
+
+
+
+
+ Yes, migrate key pair to this Keycard
+
+
+
+
+
+ Yes, migrate key pair to Keycard
+
+
+
+
+
+
+
+ Try entering seed phrase again
+
+
+
+
+
+ Check what is stored on this Keycard
+
+
+
+
+
+
+
+
+
+
+
+ I don’t know the PIN
+
+
+
+
+
+
+
+ Factory reset this Keycard
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Next
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Done
+
+
+
+
+
+ Restart app & sign in using your new Keycard
+
+
+
+
+
+ Update password & authenticate
+
+
+
+
+
+ Update PIN & authenticate
+
+
+
+
+
+ Try biometrics again
+
+
+
+
+
+ Unlock using seed phrase
+
+
+
+
+
+ Rename this Keycard
+
+
+
+ KeycardPuk
+
+
+
+
+
+
+ Enter PUK
+
+
+
+
+
+ The PUK is incorrect, try entering it again
+
+
+
+
+
+
+
+
+
+
+
+ KeycardPukView
+
+
+
+
+ Enter PUK code to recover Keycard
+
+
+
+
+
+ Recover Keycard
+
+
+
+
+
+
+
+
+
+
+
+ KeycardStateView
+
+
+
+
+ This Keycard already stores keys
+
+
+
+
+
+ To generate new keys, you will need to perform a factory reset first
+
+
+
+
+
+
+
+ Factory reset
+
+
+
+
+
+
+
+ Or remove Keycard and insert another Keycard and try again
+
+
+
+
+
+ Keycard is empty
+
+
+
+
+
+ There is no key pair on this Keycard
+
+
+
+
+
+ Generate new keys for this Keycard
+
+
+
+
+
+ Keycard locked and already stores keys
+
+
+
+
+
+ The Keycard you have inserted is locked, you will need to factory reset it before proceeding
+
+
+
+
+
+ This is not a Keycard
+
+
+
+
+
+ The card inserted is not a recognised Keycard, please remove and try and again
+
+
+
+
+
+ Keycard locked
+
+
+
+
+
+ You will need to unlock it before proceeding
+
+
+
+
+
+
+Max PIN retries reached for this keycard
+
+
+
+
+
+
+Max PUK retries reached for this keycard
+
+
+
+
+
+
+Max pairing slots reached for this keycard
+
+
+
+
+
+ Unlock Keycard
+
+
+
+
+
+ Unlock this Keycard
+
+
+
+
+
+ Unlock using seed phrase
+
+
+
+
+
+ Unlock using PUK
+
+
+
+
+
+ Wrong Keycard inserted
+
+
+
+
+
+ The card inserted is not linked to your profile.
+
+
+
+
+
+ Remove Keycard and try again
+
+
+
+ KeycardView
+
+
+
+
+ Get Keycard
+
+
+
+ KeysMainView
+
+
+
+
+ intro-wizard-title1
+
+
+
+
+
+ a-set-of-keys-controls-your-account.-your-keys-live-on-your-device,-so-only-you-can-use-them.
+
+
+
+
+
+ Connect your keys
+
+
+
+
+
+ Use your existing Status keys to login to this device.
+
+
+
+
+
+ Enter a seed phrase
+
+
+
+
+
+ Get your keys
+
+
+
+
+
+ A set of keys controls your account. Your keys live on your
+device, so only you can use them.
+
+
+
+
+
+ Generate new keys
+
+
+
+
+
+ Generate keys for a new Keycard
+
+
+
+
+
+
+
+
+
+ Import a seed phrase
+
+
+
+
+
+ Seed phrases are used to back up and restore your keys. Only use this option if you already have a seed phrase.
+
+
+
+
+
+ Import a seed phrase into a new Keycard
+
+
+
+ LanguageView
+
+
+
+
+ Set Display Currency
+
+
+
+
+
+ Search Currencies
+
+
+
+
+
+ Language
+
+
+
+
+
+ Alpha languages
+
+
+
+
+
+ Beta languages
+
+
+
+
+
+ Search Languages
+
+
+
+
+
+ Date Format
+
+
+
+
+
+ DD/MM/YY
+
+
+
+
+
+ MM/DD/YY
+
+
+
+
+
+ Time Format
+
+
+
+
+
+ 24-Hour Time
+
+
+
+
+
+ 12-Hour Time
+
+
+
+
+
+ Change language
+
+
+
+
+
+ Display language has been changed. You must restart the application for changes to take effect.
+
+
+
+
+
+ Close the app now
+
+
+
+ Layout
+
+
+
+
+ To:
+
+
+
+
+
+ USER LIMIT REACHED
+
+
+
+
+
+
+
+
+
+
+
+ Invite People
+
+
+
+
+
+
+
+
+
+
+
+ View Community
+
+
+
+
+
+
+
+
+
+
+
+ Edit Community
+
+
+
+
+
+
+
+
+
+
+
+ Leave Community
+
+
+
+ LeftTabView
+
+
+
+
+ Settings
+
+
+
+
+
+ Sign out
+
+
+
+
+
+ Make sure you have your account password and seed phrase stored. Without them you can lock yourself out of your account and lose funds.
+
+
+
+
+
+ Sign out & Quit
+
+
+
+
+
+ Wallet
+
+
+
+
+
+ Total value
+
+
+
+
+
+ Add account
+
+
+
+
+
+ Saved addresses
+
+
+
+ LinksMessageView
+
+
+
+
+ Enable automatic image unfurling
+
+
+
+
+
+ Enable link previews in chat?
+
+
+
+
+
+ Once enabled, links posted in the chat may share your metadata with their owners
+
+
+
+
+
+ Enable in Settings
+
+
+
+
+
+ Don't ask me again
+
+
+
+ LoginView
+
+
+
+
+ Fingerprint not recognized
+
+
+
+
+
+ Password incorrect
+
+
+
+
+
+ Login failed: %1
+
+
+
+
+
+ Ok
+
+
+
+
+
+ Add new user
+
+
+
+
+
+ Add existing Status user
+
+
+
+
+
+ Connecting...
+
+
+
+
+
+ Password
+
+
+
+
+
+
+
+
+
+ Enter Keycard PIN
+
+
+
+
+
+
+
+ Welcome back
+
+
+
+
+
+
+
+ Waiting for TouchID...
+
+
+
+
+
+ Use password instead
+
+
+
+
+
+ Use PIN instead
+
+
+
+
+
+ Plug in Keycard reader...
+
+
+
+
+
+ Insert your Keycard...
+
+
+
+
+
+ Check the card, it might be wrongly inserted
+
+
+
+
+
+ Keycard inserted...
+
+
+
+
+
+ Reading Keycard...
+
+
+
+
+
+ Keycard recognized
+
+
+
+
+
+ PIN Verified
+
+
+
+
+
+ Wrong Keycard!
+The card inserted is not linked to your profile.
+
+
+
+
+
+ Insert proper Keycard
+
+
+
+
+
+ PIN incorrect
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Keycard locked
+
+
+
+
+
+ Unlock Keycard
+
+
+
+
+
+ The card inserted is empty (has no profile linked).
+
+
+
+
+
+ Generate keys for a new Keycard
+
+
+
+
+
+ This is not a Keycard
+
+
+
+
+
+ The card inserted is not a recognised Keycard,
+please remove and try and again
+
+
+
+ MailserverConnectionDialog
+
+
+
+
+ Can not connect to mailserver
+
+
+
+
+
+ The mailserver you're connecting to is unavailable.
+
+
+
+
+
+ Pick another
+
+
+
+
+
+ Retry
+
+
+
+ MainView
+
+
+
+
+ Secure your funds. Keep your profile safe.
+
+
+
+
+
+ Your Keycard(s)
+
+
+
+
+
+ Setup a new Keycard with an existing account
+
+
+
+
+
+ Migrate an existing account from Status Desktop to Keycard
+
+
+
+
+
+ Create, import or restore a Keycard account
+
+
+
+
+
+ Generate a seed phrase
+
+
+
+
+
+ Import or restore via a seed phrase
+
+
+
+
+
+ Import from Keycard to Status Desktop
+
+
+
+
+
+ Other
+
+
+
+
+
+ Check what’s on a Keycard
+
+
+
+
+
+ Factory reset a Keycard
+
+
+
+
+
+ DApp Permissions
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Networks
+
+
+
+
+
+ Accounts
+
+
+
+
+
+ Generated from Your Seed Phrase
+
+
+
+
+
+ Imported
+
+
+
+
+
+ Watch-Only
+
+
+
+ MembersSelectorBase
+
+
+
+
+ To:
+
+
+
+
+
+ %1 USER LIMIT REACHED
+
+
+
+ MembershipRequestsPopup
+
+
+
+
+ Membership requests
+
+
+
+ MenuPanel
+
+
+
+
+ Apps
+
+
+
+
+
+ Settings
+
+
+
+
+
+ About & Help
+
+
+
+ MessageContextMenuView
+
+
+
+
+ Copy image
+
+
+
+
+
+ Download image
+
+
+
+
+
+ Verify Identity
+
+
+
+
+
+ ID Request Pending....
+
+
+
+
+
+ Respond to ID Request...
+
+
+
+
+
+ Rename
+
+
+
+
+
+ Unblock User
+
+
+
+
+
+ Mark as Untrustworthy
+
+
+
+
+
+ Remove Untrustworthy Mark
+
+
+
+
+
+ Block User
+
+
+
+
+
+ Reply to
+
+
+
+
+
+ Edit message
+
+
+
+
+
+ Copy Message Id
+
+
+
+
+
+ Unpin
+
+
+
+
+
+ Pin
+
+
+
+
+
+ Delete message
+
+
+
+
+
+ Jump to
+
+
+
+
+
+ Please choose a directory
+
+
+
+
+
+ Confirm deleting this message
+
+
+
+
+
+ Are you sure you want to delete this message? Be aware that other clients are not guaranteed to delete the message as well.
+
+
+
+ MessageStore
+
+
+
+
+ You
+
+
+
+ MessageView
+
+
+
+
+ Audio Message
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ Save
+
+
+
+
+
+ Loading image...
+
+
+
+
+
+ Error loading the image
+
+
+
+
+
+ Resend
+
+
+
+
+
+ Pinned
+
+
+
+
+
+ Pinned by
+
+
+
+
+
+ Imported from discord
+
+
+
+
+
+ There is should be a message for reply which source message was deleted
+ <deleted>
+
+
+
+
+
+ Add reaction
+
+
+
+
+
+ Reply
+
+
+
+
+
+ Edit
+
+
+
+
+
+ Unpin
+
+
+
+
+
+ Pin
+
+
+
+
+
+ Delete
+
+
+
+
+
+ Confirm deleting this message
+
+
+
+
+
+ Are you sure you want to delete this message? Be aware that other clients are not guaranteed to delete the message as well.
+
+
+
+ MessagingView
+
+
+
+
+ Allow new contact requests
+
+
+
+
+
+ Open Message Links With
+
+
+
+
+
+ Status Browser
+
+
+
+
+
+ System Default Browser
+
+
+
+
+
+ Contacts, Requests, and Blocked Users
+
+
+
+
+
+ Display Message Link Previews
+
+
+
+
+
+ Fine tune which sites to allow link previews
+
+
+
+
+
+ Image unfurling
+
+
+
+
+
+ All images (links that contain an image extension) will be downloaded and displayed
+
+
+
+
+
+ Message syncing
+
+
+
+
+
+ Waku nodes
+
+
+
+
+
+ For security reasons, private chat history won't be synced.
+
+
+
+ ModuleWarning
+
+
+
+
+ %1%
+
+
+
+ MuteChatMenuItem
+
+
+
+
+ Unmute Chat
+
+
+
+
+
+ Mute Chat
+
+
+
+ MutedChatsModal
+
+
+
+
+ Muted chats
+
+
+
+
+
+ Unmute
+
+
+
+ MyProfileSettingsView
+
+
+
+
+ Biometric login and transaction authentication
+
+
+
+
+
+ Communities
+
+
+
+
+
+ Accounts
+
+
+
+
+
+ You haven't joined any communities yet
+
+
+
+
+
+ You don't have any wallet accounts yet
+
+
+
+ MyProfileView
+
+
+
+
+ Change Password
+
+
+
+
+
+ Edit
+
+
+
+
+
+ Preview
+
+
+
+ NetworkCardsComponent
+
+
+
+
+ Your Balances
+
+
+
+
+
+ No Balance
+
+
+
+
+
+ No Gas
+
+
+
+
+
+ BALANCE:
+
+
+
+
+
+
+
+ Disabled
+
+
+
+ NetworkFilter
+
+
+
+
+ All networks
+
+
+
+
+
+
+
+
+
+
+
+ NetworkSelectPopup
+
+
+
+
+ Layer 2
+
+
+
+ NetworkSelector
+
+
+
+
+ Simple
+
+
+
+
+
+ Advanced
+
+
+
+
+
+ Custom
+
+
+
+ NetworksAdvancedCustomRoutingView
+
+
+
+
+ Networks
+
+
+
+
+
+ Show Unpreferred Networks
+
+
+
+
+
+ The networks where the receipient will receive tokens. Amounts calculated automatically for the lowest cost.
+
+
+
+ NetworksSimpleRoutingView
+
+
+
+
+ Networks
+
+
+
+
+
+ Choose a network to use for the transaction
+
+
+
+ NetworksView
+
+
+
+
+ Layer 2
+
+
+
+
+
+ Add Custom Network
+
+
+
+ NicknamePopup
+
+
+
+
+
+
+ Nickname
+
+
+
+
+
+ Nicknames help you identify others in Status. Only you can see the nicknames you’ve added
+
+
+
+
+
+ Done
+
+
+
+ NoFriendsRectangle
+
+
+
+
+ You don’t have any contacts yet. Invite your friends to start chatting.
+
+
+
+
+
+ Invite friends
+
+
+
+ NoImageUploadedPanel
+
+
+
+
+ Upload
+
+
+
+
+
+ Wide aspect ratio is optimal
+
+
+
+ NodeLayout
+
+
+
+
+ Bloom Filter Usage
+
+
+
+
+
+ Type json-rpc message... e.g {"method": "eth_accounts"}
+
+
+
+ NotificationSelect
+
+
+
+
+ Send Alerts
+
+
+
+
+
+ Deliver Quietly
+
+
+
+
+
+ Turn Off
+
+
+
+ NotificationWindow
+
+
+
+
+ Everything is connected
+
+
+
+ NotificationsView
+
+
+
+
+ Community
+
+
+
+
+
+ 1:1 Chat
+
+
+
+
+
+ Group Chat
+
+
+
+
+
+ Muted
+
+
+
+
+
+
+
+ Off
+
+
+
+
+
+
+
+
+
+ Quiet
+
+
+
+
+
+ Personal @ Mentions %1
+
+
+
+
+
+ Global @ Mentions %1
+
+
+
+
+
+ Alerts
+
+
+
+
+
+ Other Messages %1
+
+
+
+
+
+ Multiple Exemptions
+
+
+
+
+
+ Enable Notifications in macOS Settings
+
+
+
+
+
+ To receive Status notifications, make sure you've enabled them in your computer's settings under <b>System Preferences > Notifications</b>
+
+
+
+
+
+ Sync your devices to share notifications preferences
+
+
+
+
+
+ Syncing >
+
+
+
+
+
+ Allow Notifications
+
+
+
+
+
+ Messages
+
+
+
+
+
+ 1:1 Chats
+
+
+
+
+
+ Group Chats
+
+
+
+
+
+ Personal @ Mentions
+
+
+
+
+
+ Messages containing @%1
+
+
+
+
+
+ Global @ Mentions
+
+
+
+
+
+ Messages containing @here and @channel
+
+
+
+
+
+ All Messages
+
+
+
+
+
+ Others
+
+
+
+
+
+ Contact Requests
+
+
+
+
+
+ Identity Verification Requests
+
+
+
+
+
+ Notification Content
+
+
+
+
+
+ Show Name and Message
+
+
+
+
+
+ Hi there! So EIP-1559 will defini...
+
+
+
+
+
+ Name Only
+
+
+
+
+
+
+
+ You have a new message
+
+
+
+
+
+ Anonymous
+
+
+
+
+
+ Play a Sound When Receiving a Notification
+
+
+
+
+
+ Volume
+
+
+
+
+
+ Send a Test Notification
+
+
+
+
+
+ Exemptions
+
+
+
+
+
+ Search Communities, Group Chats and 1:1 Chats
+
+
+
+
+
+ Most recent
+
+
+
+ OnboardingLayout
+
+
+
+
+
+
+ Keys for this account already exist
+
+
+
+
+
+ Keys for this account already exist and can't be added again. If you've lost your password, passcode or Keycard, uninstall the app, reinstall and access your keys by entering your seed phrase
+
+
+
+
+
+
+
+ Login failed
+
+
+
+
+
+
+
+ Login failed. Please re-enter your password and try again.
+
+
+
+
+
+ Keys for this account already exist and can't be added again. If you've lost your password, passcode or Keycard, uninstall the app, reinstall and access your keys by entering your seed phrase. In case of Keycard try recovering using PUK or reinstall the app and try login with the Keycard option.
+
+
+
+
+
+ Error importing seed
+
+
+
+ OperatorsSelector
+
+
+
+
+ And...
+
+
+
+
+
+ Or...
+
+
+
+ OutgoingContactVerificationRequestPopup
+
+
+
+
+ Verify %1's Identity
+
+
+
+
+
+ Cancel verification
+
+
+
+
+
+ Mark Untrustworthy
+
+
+
+
+
+ Confirm Identity
+
+
+
+
+
+ Waiting for %1's response...
+
+
+
+ PasswordView
+
+
+
+
+ Create a password
+
+
+
+
+
+ Create a password to unlock Status on this device & sign transactions.
+
+
+
+
+
+ You will not be able to recover this password if it is lost.
+
+
+
+
+
+ Minimum %1 characters. To strengthen your password consider including:
+
+
+
+
+
+ Passwords don't match
+
+
+
+
+
+ This password has been pwned and shouldn't be used
+
+
+
+
+
+ This password is a common word and shouldn't be used
+
+
+
+
+
+ Password must be at least %1 characters long
+
+
+
+
+
+ Current password
+
+
+
+
+
+ New password
+
+
+
+
+
+ Very weak
+
+
+
+
+
+ Weak
+
+
+
+
+
+ So-so
+
+
+
+
+
+ Good
+
+
+
+
+
+ Great
+
+
+
+
+
+ Lower case
+
+
+
+
+
+ Upper case
+
+
+
+
+
+ Numbers
+
+
+
+
+
+ Symbols
+
+
+
+
+
+ Confirm password
+
+
+
+ PermissionsDropdown
+
+
+
+
+ Community
+
+
+
+
+
+ Members who meet the requirements will be allowed to create and edit permissions, token sales, airdrops and subscriptions
+
+
+
+
+
+ Be careful with assigning this permission.
+
+
+
+
+
+ Only the community owner can modify admin permissions
+
+
+
+
+
+ Become admin
+
+
+
+
+
+ Anyone who meets the requirements will be allowed to join your community
+
+
+
+
+
+ Become member
+
+
+
+
+
+ Channels
+
+
+
+
+
+ Members who meet the requirements will be allowed to read, write, ban members and pin messages in the selected channels
+
+
+
+
+
+ Moderate
+
+
+
+
+
+ Members who meet the requirements will be allowed to read and write in the selected channels
+
+
+
+
+
+ View and post
+
+
+
+
+
+ Members who meet the requirements will be allowed to read the selected channels
+
+
+
+
+
+ Read
+
+
+
+
+
+ Add
+
+
+
+
+
+ Update
+
+
+
+ PermissionsListView
+
+
+
+
+ Disconnect All
+
+
+
+
+
+ Disconnect
+
+
+
+ PinnedMessagesPopup
+
+
+
+
+ Pin limit reached
+
+
+
+
+
+ Pinned messages
+
+
+
+
+
+ Unpin a previous message first
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Pinned messages will appear here.
+
+
+
+
+
+ Unpin selected message and pin new message
+
+
+
+ PrivateChatPopup
+
+
+
+
+ New chat
+
+
+
+
+
+ My Profile
+
+
+
+ ProfileDescriptionPanel
+
+
+
+
+ Display name
+
+
+
+
+
+ Display Name
+
+
+
+
+
+ Bio
+
+
+
+
+
+ Tell us about yourself
+
+
+
+
+
+ Add more social links
+
+
+
+ ProfileDialogView
+
+
+
+
+ Edit Profile
+
+
+
+
+
+ Send Message
+
+
+
+
+
+ Respond to contact request
+
+
+
+
+
+ Send Contact Request
+
+
+
+
+
+
+
+ Block User
+
+
+
+
+
+
+
+ Unblock User
+
+
+
+
+
+ Contact Request Pending...
+
+
+
+
+
+ Contact Request Rejected
+
+
+
+
+
+ Respond to ID Request
+
+
+
+
+
+ Remove contact '%1'
+
+
+
+
+
+ This will remove the user as a contact. Please confirm.
+
+
+
+
+
+ Remove contact verification
+
+
+
+
+
+ This will remove the contact's verified status. Please confirm.
+
+
+
+
+
+ Verify Identity
+
+
+
+
+
+ ID Request Pending...
+
+
+
+
+
+ Rename
+
+
+
+
+
+ Reverse Contact Rejection
+
+
+
+
+
+ Copy Link to Profile
+
+
+
+
+
+ Mark as Untrustworthy
+
+
+
+
+
+ Remove Untrustworthy Mark
+
+
+
+
+
+ Remove Identity Verification
+
+
+
+
+
+ Remove Contact
+
+
+
+
+
+ Cancel Contact Request
+
+
+
+
+
+ Link to Profile
+
+
+
+
+
+
+
+ Copy
+
+
+
+
+
+
+
+ Copied
+
+
+
+
+
+ Emoji Hash
+
+
+
+
+
+ Tokens
+
+
+
+
+
+ NFTs
+
+
+
+
+
+ Communities
+
+
+
+
+
+ Accounts
+
+
+
+
+
+ More content to appear here soon...
+
+
+
+ ProfileHeader
+
+
+
+
+ Chatkey:%1...
+
+
+
+
+
+ Upload a file
+
+
+
+
+
+ Remove image
+
+
+
+ ProfileLayout
+
+
+
+
+ Contacts
+
+
+
+ ProfileSectionStore
+
+
+
+
+ Back up seed phrase
+
+
+
+
+
+ Profile
+
+
+
+
+
+ Keycard
+
+
+
+
+
+ ENS usernames
+
+
+
+
+
+ Messaging
+
+
+
+
+
+ Wallet
+
+
+
+
+
+ Browser
+
+
+
+
+
+ Communities
+
+
+
+
+
+ Appearance
+
+
+
+
+
+ Notifications & Sounds
+
+
+
+
+
+ Language & Currency
+
+
+
+
+
+ Devices settings
+
+
+
+
+
+ Advanced
+
+
+
+
+
+ About
+
+
+
+
+
+ Sign out & Quit
+
+
+
+ PublicChatPopup
+
+
+
+
+ Join public chat
+
+
+
+
+
+ A public chat is where you get to hang out with others, make friends and talk about subjects of your interest.
+
+
+
+
+
+ chat-name
+
+
+
+
+
+ You need to enter a channel name
+
+
+
+
+
+ The channel name can only contain lowercase letters, numbers and dashes
+
+
+
+
+
+ Start chat
+
+
+
+ RateView
+
+
+
+
+ Bandwidth
+
+
+
+
+
+ Upload
+
+
+
+
+
+
+
+ Kb/s
+
+
+
+
+
+ Download
+
+
+
+ ReceiveModal
+
+
+
+
+ Receive
+
+
+
+
+
+ Legacy
+
+
+
+
+
+ Multichain
+
+
+
+
+
+ Your Address
+
+
+
+
+
+ Copy
+
+
+
+ RecipientSelector
+
+
+
+
+ Invalid ethereum address
+
+
+
+
+
+ Address
+
+
+
+
+
+ My account
+
+
+
+
+
+ Contact
+
+
+
+
+
+ Recipient
+
+
+
+ RenameAccontModal
+
+
+
+
+ Rename %1
+
+
+
+
+
+ Enter an account name...
+
+
+
+
+
+ You need to enter an account name
+
+
+
+
+
+ This is not a valid account name
+
+
+
+
+
+ color
+
+
+
+
+
+ Change Name
+
+
+
+
+
+ Changing settings failed
+
+
+
+ RenameGroupPopup
+
+
+
+
+
+
+ Edit group name and image
+
+
+
+
+
+ Name the group
+
+
+
+
+
+ Group image
+
+
+
+
+
+ Choose an image as logo
+
+
+
+
+
+ Use as an icon for this group chat
+
+
+
+
+
+ Standard colours
+
+
+
+
+
+ Save changes
+
+
+
+ RightTabView
+
+
+
+
+
+
+
+
+ Assets
+
+
+
+
+
+
+
+ Activity
+
+
+
+
+
+ Collectibles
+
+
+
+ RootStore
+
+
+
+
+ You
+
+
+
+
+
+ Start a 1-on-1 chat with %1
+
+
+
+
+
+ Join the %1 community
+
+
+
+
+
+ Join the %1 group chat
+
+
+
+ SavedAddressesDelegate
+
+
+
+
+ Edit
+
+
+
+
+
+
+
+ Delete
+
+
+
+
+
+ Are you sure?
+
+
+
+
+
+ Are you sure you want to remove '%1' from your saved addresses?
+
+
+
+
+
+ Cancel
+
+
+
+ SavedAddressesView
+
+
+
+
+ Saved addresses
+
+
+
+
+
+ Add new address
+
+
+
+
+
+ No saved addresses
+
+
+
+ SearchBox
+
+
+
+
+ Search
+
+
+
+ SearchEngineModal
+
+
+
+
+ Search engine
+
+
+
+
+
+ None
+
+
+
+ SearchResults
+
+
+
+
+ Non contacts
+
+
+
+
+
+ No profile found
+
+
+
+ SeedPhrase
+
+
+
+
+ Reveal seed phrase
+
+
+
+
+
+ Write down your seed phrase
+
+
+
+
+
+ The next screen contains your seed phrase.<br/><b>Anyone</b> who sees it can use it to access to your funds.
+
+
+
+ SeedPhraseBackupWarning
+
+
+
+
+ Back up your seed phrase
+
+
+
+
+
+ Back up
+
+
+
+ SeedPhraseInputView
+
+
+
+
+ Enter seed phrase
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Invalid seed
+
+
+
+
+
+ Import
+
+
+
+
+
+ Restore Status Profile
+
+
+
+
+
+ Recover Keycard
+
+
+
+
+
+ Next
+
+
+
+ SeedPhraseView
+
+
+
+
+ Write down your seed phrase
+
+
+
+
+
+ You will need this to recover your Keycard if you lose
+your PIN or if the wrong PIN is entered five times in a row.
+
+
+
+
+
+ Next
+
+
+
+ SeedPhraseWordsInputView
+
+
+
+
+ Enter seed phrase words
+
+
+
+
+
+ Invalid word
+
+
+
+
+
+ Finish
+
+
+
+ SelectAccountModal
+
+
+
+
+ Select account
+
+
+
+
+
+ Select account to share and receive assets
+
+
+
+
+
+ Confirm and share address
+
+
+
+ SelectAnotherAccountModal
+
+
+
+
+ Your keys
+
+
+
+
+
+ Add another existing key
+
+
+
+ SelectGeneratedAccount
+
+
+
+
+ Import new Seed Phrase
+
+
+
+
+
+ Generate from Private key
+
+
+
+
+
+ Add a watch-only address
+
+
+
+
+
+ Imported
+
+
+
+
+
+ Add new
+
+
+
+
+
+ Origin
+
+
+
+ SelectKeyPair
+
+
+
+
+ Select a key pair
+
+
+
+
+
+ Select which key pair you’d like to move to this Keycard
+
+
+
+
+
+ Profile key pair
+
+
+
+
+
+ Other key pairs
+
+
+
+ SendContactRequestMenuItem
+
+
+
+
+ Send Contact Request
+
+
+
+ SendContactRequestModal
+
+
+
+
+ Send Contact Request to chat key
+
+
+
+
+
+ Paste
+
+
+
+
+
+ Enter chat key here
+
+
+
+
+
+
+
+ Say who you are / why you want to become a contact...
+
+
+
+
+
+
+
+ who are you
+
+
+
+
+
+
+
+ Send Contact Request
+
+
+
+
+
+ Send Contact Request to %1
+
+
+
+ SendMessageMenuItem
+
+
+
+
+ Send Message
+
+
+
+ SendModal
+
+
+
+
+ Error sending the transaction
+
+
+
+
+
+ Send
+
+
+
+
+
+ Max: %1
+
+
+
+
+
+ No balances active
+
+
+
+
+
+ To
+
+
+
+
+
+ Enter an ENS name or address
+
+
+
+
+
+ Paste
+
+
+
+
+
+ Fees
+
+
+
+
+
+ Transaction pending...
+
+
+
+
+
+ View on etherscan
+
+
+
+ SendModalFooter
+
+
+
+
+ Estimated Time:
+
+
+
+
+
+ Max Fees:
+
+
+
+
+
+ Send
+
+
+
+ SendToContractWarning
+
+
+
+
+ Tokens will be sent directly to a contract address, which may result in a loss of funds. To transfer ERC-20 tokens, ensure the recipient address is the address of the destination wallet.
+
+
+
+ SendTransactionButton
+
+
+
+
+ Sign and send
+
+
+
+ SettingsDirtyToastMessage
+
+
+
+
+ Changes detected
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ Save changes
+
+
+
+ SignMessageModal
+
+
+
+
+ Signature request
+
+
+
+
+
+ From
+
+
+
+
+
+ Data
+
+
+
+
+
+ Message
+
+
+
+
+
+ Reject
+
+
+
+
+
+ Sign
+
+
+
+
+
+ Sign with password
+
+
+
+ SignPhraseModal
+
+
+
+
+ Signing phrase
+
+
+
+
+
+ This is your signing phrase
+
+
+
+
+
+ You should see these 3 words before signing each transaction
+
+
+
+
+
+ If you see a different combination, cancel the transaction and sign out
+
+
+
+
+
+ Ok, got it
+
+
+
+
+
+ Remind me later
+
+
+
+ SignTransactionModal
+
+
+
+
+
+
+ Send
+
+
+
+
+
+ Error sending the transaction
+
+
+
+
+
+
+
+ Continue
+
+
+
+
+
+ Choose account
+
+
+
+
+
+ Network fee
+
+
+
+
+
+ Error estimating gas: %1
+
+
+
+
+
+ Transaction preview
+
+
+
+
+
+
+
+ Sign with password
+
+
+
+
+
+ Send %1 %2
+
+
+
+
+
+ Next
+
+
+
+
+
+ Wrong password
+
+
+
+
+
+ Transaction pending...
+
+
+
+
+
+ View on etherscan
+
+
+
+ SocialLinksModal
+
+
+
+
+ Social Links
+
+
+
+
+
+ Custom links
+
+
+
+
+
+ Add another custom link
+
+
+
+ StateBubble
+
+
+
+
+ Pending
+
+
+
+
+
+ Confirmed
+
+
+
+
+
+ Unknown token
+
+
+
+
+
+ Address requested
+
+
+
+
+
+ Waiting to accept
+
+
+
+
+
+ Address shared
+
+
+
+
+
+ Address received
+
+
+
+
+
+ Transaction declined
+
+
+
+
+
+ failure
+
+
+
+
+
+ Unknown state
+
+
+
+ StaticSocialLinkInput
+
+
+
+
+ Twitter Handle
+
+
+
+
+
+ Personal Site
+
+
+
+
+
+ Github
+
+
+
+
+
+ YouTube Channel
+
+
+
+
+
+ Discord Handle
+
+
+
+
+
+ Telegram Handle
+
+
+
+ StatusActivityCenterButton
+
+
+
+
+ Activity
+
+
+
+ StatusAddressOrEnsValidator
+
+
+
+
+ Please enter a valid address or ENS name.
+
+
+
+ StatusAddressPage
+
+
+
+
+ Copy Action:
+
+
+
+ StatusAddressValidator
+
+
+
+
+ Please enter a valid address.
+
+
+
+ StatusAppChatView
+
+
+
+
+ More
+
+
+
+
+
+ Join public chats
+
+
+
+
+
+ Start chat
+
+
+
+ StatusAppCommunitiesPortalView
+
+
+
+
+ Find community
+
+
+
+
+
+ Featured
+
+
+
+
+
+ Popular
+
+
+
+ StatusAppCommunityView
+
+
+
+
+ Search
+
+
+
+
+
+
+
+ Members
+
+
+
+
+
+ Community content here
+
+
+
+ StatusAssetSelector
+
+
+
+
+ Search for token or enter token address
+
+
+
+ StatusAsyncEnsValidator
+
+
+
+
+ ENS name could not be resolved in to an address
+
+
+
+ StatusAsyncValidator
+
+
+
+
+ invalid input
+
+
+
+ StatusBadge
+
+
+
+
+ 99+
+
+
+
+ StatusChatImageExtensionValidator
+
+
+
+
+ Format not supported.
+
+
+
+
+
+ Upload %1 only
+
+
+
+ StatusChatImageLoader
+
+
+
+
+ Error loading the image
+
+
+
+
+
+ Loading image...
+
+
+
+ StatusChatImageQtyValidator
+
+
+
+
+
+
+
+
+
+
+ StatusChatImageSizeValidator
+
+
+
+
+ Max image size is %1 MB
+
+
+
+ StatusChatInfoButton
+
+
+
+
+ Unmute
+
+
+
+
+
+
+
+
+
+
+
+ StatusChatInput
+
+
+
+
+ Message
+
+
+
+
+
+ Please choose an image
+
+
+
+
+
+ Image files (%1)
+
+
+
+
+
+ Your message is too long.
+
+
+
+
+
+ Please make your message shorter. We have set the limit to 2000 characters to be courteous of others.
+
+
+
+
+
+ Bold
+
+
+
+
+
+ Italic
+
+
+
+
+
+ Strikethrough
+
+
+
+
+
+ Code
+
+
+
+
+
+ Quote
+
+
+
+
+
+ Unblock
+
+
+
+ StatusChatListAndCategories
+
+
+
+
+ Add channel inside category
+
+
+
+
+
+ More
+
+
+
+ StatusChatListCategoryItem
+
+
+
+
+ Add channel inside category
+
+
+
+
+
+ More
+
+
+
+ StatusChatListItem
+
+
+
+
+ Unmute
+
+
+
+ StatusColorDialog
+
+
+
+
+ This is not a valid colour
+
+
+
+
+
+ Preview
+
+
+
+
+
+ Standard colours
+
+
+
+
+
+ Select Colour
+
+
+
+ StatusColorSelector
+
+
+
+
+ Color
+
+
+
+ StatusColorSpacePage
+
+
+
+
+ Thickness
+
+
+
+
+
+ Min saturate:
+
+
+
+
+
+ Max saturate:
+
+
+
+
+
+ Min value:
+
+
+
+
+
+ Max value:
+
+
+
+
+
+ Color
+
+
+
+ StatusCommunityTagsPage
+
+
+
+
+ Select tags that will fit your Community
+
+
+
+
+
+ Search tags
+
+
+
+
+
+ Selected tags
+
+
+
+ StatusContactVerificationIcons
+
+
+
+
+ Verified contact
+
+
+
+
+
+ Untrustworthy contact
+
+
+
+
+
+ Contact
+
+
+
+
+
+ Untrustworthy
+
+
+
+ StatusDateGroupLabel
+
+
+
+
+ Today
+
+
+
+
+
+ Yesterday
+
+
+
+ StatusDatePicker
+
+
+
+
+ Previous year
+
+
+
+
+
+ Previous month
+
+
+
+
+
+ Show current month
+
+
+
+
+
+ Next month
+
+
+
+
+
+ Next year
+
+
+
+ StatusDialog
+
+
+
+
+ Close
+
+
+
+
+
+ Abort
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ No to all
+
+
+
+
+
+ No
+
+
+
+
+
+ Open
+
+
+
+
+
+ Save
+
+
+
+
+
+ Save all
+
+
+
+
+
+ Retry
+
+
+
+
+
+ Ignore
+
+
+
+
+
+ Ok
+
+
+
+
+
+ Yes to all
+
+
+
+
+
+ Yes
+
+
+
+
+
+ Apply
+
+
+
+ StatusETHTransactionModal
+
+
+
+
+ Contract interaction
+
+
+
+
+
+ Wrong password
+
+
+
+
+
+ Error sending the transaction: %1
+
+
+
+
+
+ Error sending the transaction
+
+
+
+
+
+ Continue
+
+
+
+
+
+ Choose account
+
+
+
+
+
+
+
+ Sign with password
+
+
+
+
+
+ Next
+
+
+
+ StatusEmojiSection
+
+
+
+
+ No recent emojis
+
+
+
+ StatusExpandableSettingsItemPage
+
+
+
+
+ Back up seed phrase
+
+
+
+
+
+ Not Implemented
+
+
+
+ StatusFloatValidator
+
+
+
+
+ Please enter a valid numeric value.
+
+
+
+ StatusGifColumn
+
+
+
+
+ Remove from favorites
+
+
+
+
+
+ Add to favorites
+
+
+
+ StatusGifPopup
+
+
+
+
+ Search
+
+
+
+
+
+ TRENDING
+
+
+
+
+
+ FAVORITES
+
+
+
+
+
+ RECENT
+
+
+
+ StatusImageCropPanelPage
+
+
+
+
+ Cycle image
+
+
+
+
+
+ Cycle spacing
+
+
+
+
+
+ Cycle frame margins
+
+
+
+
+
+ Load external image
+
+
+
+
+
+ Test Title
+
+
+
+
+
+ Supported image formats (%1)
+
+
+
+ StatusIntValidator
+
+
+
+
+ Please enter a valid numeric value.
+
+
+
+ StatusItemSelector
+
+
+
+
+ and
+
+
+
+
+
+ or
+
+
+
+ StatusListPicker
+
+
+
+
+ Search
+
+
+
+ StatusListPickerPage
+
+
+
+
+
+
+ Search Languages
+
+
+
+
+
+
+
+ Search Currencies
+
+
+
+ StatusMacNotification
+
+
+
+
+ My latest message
+ with a return
+
+
+
+
+
+ Open
+
+
+
+ StatusMessage
+
+
+
+
+ (edited)
+
+
+
+ StatusMessageEmojiReactions
+
+
+
+
+ and
+
+
+
+
+
+ %1 more
+
+
+
+
+
+ %1 reacted with %2
+
+
+
+
+
+ Add reaction
+
+
+
+ StatusMessageHeader
+
+
+
+
+ You
+
+
+
+ StatusMessageReply
+
+
+
+
+ You
+
+
+
+ StatusNotification
+
+
+
+
+ Open
+
+
+
+ StatusPasswordStrengthIndicator
+
+
+
+
+ Very weak
+
+
+
+
+
+ Weak
+
+
+
+
+
+ So-so
+
+
+
+
+
+ Good
+
+
+
+
+
+ Great
+
+
+
+ StatusSNTTransactionModal
+
+
+
+
+
+
+
+
+ Authorize %1 %2
+
+
+
+
+
+ Error sending the transaction
+
+
+
+
+
+ Wrong password
+
+
+
+
+
+ Continue
+
+
+
+
+
+ Choose account
+
+
+
+
+
+
+
+ Sign with password
+
+
+
+
+
+ Send %1 %2
+
+
+
+
+
+ Next
+
+
+
+ StatusSearchListPopup
+
+
+
+
+ Search...
+
+
+
+ StatusSearchLocationMenu
+
+
+
+
+ Anywhere
+
+
+
+ StatusSearchPopup
+
+
+
+
+ No results
+
+
+
+
+
+ Anywhere
+
+
+
+
+
+ Search
+
+
+
+
+
+ In:
+
+
+
+ StatusSpellcheckingMenuItems
+
+
+
+
+ Add to dictionary
+
+
+
+
+
+ Disable Spellchecking
+
+
+
+ StatusStackModal
+
+
+
+
+ StackModal
+
+
+
+
+
+ Next
+
+
+
+
+
+ Finish
+
+
+
+ StatusStickerButton
+
+
+
+
+ Buy for %1 SNT
+
+
+
+
+
+ Uninstall
+
+
+
+
+
+ Install
+
+
+
+
+
+ Free
+
+
+
+
+
+ Pending...
+
+
+
+
+
+ Cancel
+
+
+
+
+
+ Update
+
+
+
+ StatusStickerMarket
+
+
+
+
+ This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk.
+
+
+
+
+
+ I understand
+
+
+
+ StatusStickersPopup
+
+
+
+
+ You don't have any stickers yet
+
+
+
+
+
+ Recently used stickers will appear here
+
+
+
+
+
+ Get Stickers
+
+
+
+ StatusTagSelectorPage
+
+
+
+
+ To:
+
+
+
+
+
+ USER LIMIT REACHED
+
+
+
+ StatusTokenInlineSelector
+
+
+
+
+ Hold
+
+
+
+
+
+ or
+
+
+
+
+
+ to post
+
+
+
+ StatusUrlValidator
+
+
+
+
+ Please enter a valid URL
+
+
+
+ StatusValidator
+
+
+
+
+ invalid input
+
+
+
+ StatusWalletColorSelect
+
+
+
+
+ Account color
+
+
+
+ StatusWindowsTitleBar
+
+
+
+
+ Status
+
+
+
+ SubheaderTabBar
+
+
+
+
+ Step %1 of %2
+
+
+
+ TabAddressSelectorView
+
+
+
+
+ Saved
+
+
+
+
+
+ My Accounts
+
+
+
+
+
+ Recent
+
+
+
+
+
+ Search for saved address
+
+
+
+
+
+ No Saved Address
+
+
+
+
+
+ No Recents
+
+
+
+ ToastMessage
+
+
+
+
+ View on Etherscan
+
+
+
+
+
+
+
+ Transaction pending...
+
+
+
+ TokenMarketValuesStore
+
+
+
+
+ Price
+
+
+
+
+
+ Balance
+
+
+
+
+
+ 7D
+
+
+
+
+
+ 1M
+
+
+
+
+
+ 6M
+
+
+
+
+
+ 1Y
+
+
+
+
+
+ ALL
+
+
+
+ TokenSettingsModal
+
+
+
+
+ Manage Assets
+
+
+
+
+
+ Add custom token
+
+
+
+ TokenSettingsModalContent
+
+
+
+
+ Token details
+
+
+
+
+
+ Remove token
+
+
+
+
+
+ Custom
+
+
+
+
+
+ Default
+
+
+
+ TouchIDAuthView
+
+
+
+
+ Biometrics
+
+
+
+
+
+ Would you like to use TouchID instead of a PIN code
+to login to Status using your Keycard?
+
+
+
+
+
+ Would you like to use Touch ID
+to login to Status?
+
+
+
+
+
+ Yes, use Touch ID
+
+
+
+
+
+ I prefer to use my PIN
+
+
+
+
+
+ I prefer to use my password
+
+
+
+ TransactionBubbleView
+
+
+
+
+ Transaction request
+
+
+
+
+
+ ↑ Outgoing transaction
+
+
+
+
+
+ ↓ Incoming transaction
+
+
+
+
+
+ Token not found on your current network
+
+
+
+ TransactionDelegate
+
+
+
+
+ Receive %1
+
+
+
+
+
+
+
+ Send %1 to %2
+
+
+
+ TransactionDetailView
+
+
+
+
+
+
+ Received %1 %2 from %3
+
+
+
+
+
+
+
+ Sent %1 %2 to %3
+
+
+
+
+
+ Transaction summary
+
+
+
+
+
+ Fees
+
+
+
+
+
+ Data
+
+
+
+
+
+ Time
+
+
+
+
+
+ %1 <font color="#939BA1">on</font> %2
+
+
+
+
+
+ Confirmations
+
+
+
+
+
+ Nonce
+
+
+
+
+
+ Base fee
+
+
+
+
+
+ %1 Gwei
+
+
+
+
+
+ Tip
+
+
+
+
+
+
+
+ %1 Gwei <font color="#939BA1">• Max: %2 Gwei</font>
+
+
+
+
+
+ Total fee
+
+
+
+ TransactionModal
+
+
+
+
+ Transaction Details
+
+
+
+
+
+ confirmation(s)
+
+
+
+
+
+ When the transaction has 12 confirmations you can consider it settled.
+
+
+
+
+
+ Block
+
+
+
+
+
+ Hash
+
+
+
+
+
+ From
+
+
+
+
+
+ To
+
+
+
+
+
+ Gas limit
+
+
+
+
+
+ Gas price
+
+
+
+
+
+ Gas used
+
+
+
+
+
+ Nonce
+
+
+
+ TransactionPreview
+
+
+
+
+ From
+
+
+
+
+
+ Recipient
+
+
+
+
+
+ Unknown
+
+
+
+
+
+ Asset
+
+
+
+
+
+ Amount
+
+
+
+
+
+ Network fee
+
+
+
+
+
+ Data
+
+
+
+
+
+ Data field
+
+
+
+ TransactionSettingsConfirmationPopup
+
+
+
+
+ Are you sure?
+
+
+
+
+
+ Your priority fee is below our suggested parameters.
+
+
+
+
+
+ Current base fee
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ %1 Gwei
+
+
+
+
+
+ Current minimum tip
+
+
+
+
+
+ Current average tip
+
+
+
+
+
+ Your tip limit
+
+
+
+
+
+ Suggested minimum tip
+
+
+
+
+
+ Your price limit
+
+
+
+
+
+ Suggested minimum price limit
+
+
+
+
+
+ Change Limit
+
+
+
+
+
+ Continue anyway
+
+
+
+ TransactionSigner
+
+
+
+
+ You need to enter a password
+
+
+
+
+
+ Password needs to be 6 characters or more
+
+
+
+
+
+ Signing phrase
+
+
+
+
+
+ Signing phrase is a 3 word combination that displayed when you entered the wallet on this device for the first time.
+
+
+
+
+
+ Enter the password you use to unlock this device
+
+
+
+
+
+ Password
+
+
+
+
+
+ Enter password
+
+
+
+ TransferOwnershipPopup
+
+
+
+
+ Transfer ownership
+
+
+
+
+
+ Community private key
+
+
+
+
+
+ Copy
+
+
+
+
+
+ Copied
+
+
+
+
+
+ You should keep it safe and only share it with people you trust to take ownership of your community
+
+
+
+
+
+ You can also use this key to import your community on another device
+
+
+
+ UnblockContactConfirmationDialog
+
+
+
+
+
+
+ Unblock User
+
+
+
+
+
+ Unblocking will allow new messages you received from %1 to reach you.
+
+
+
+ UserListPanel
+
+
+
+
+ Online
+
+
+
+
+
+ Inactive
+
+
+
+ UserStatusContextMenu
+
+
+
+
+ View My Profile
+
+
+
+
+
+ Always online
+
+
+
+
+
+ Inactive
+
+
+
+
+
+ Set status automatically
+
+
+
+ UsernameLabel
+
+
+
+
+ You
+
+
+
+ Utils
+
+
+
+
+ Sun
+
+
+
+
+
+ Mon
+
+
+
+
+
+ Tue
+
+
+
+
+
+ Wed
+
+
+
+
+
+ Thu
+
+
+
+
+
+ Fri
+
+
+
+
+
+ Sat
+
+
+
+
+
+ Jan
+
+
+
+
+
+ Feb
+
+
+
+
+
+ Mar
+
+
+
+
+
+ Apr
+
+
+
+
+
+ May
+
+
+
+
+
+ Jun
+
+
+
+
+
+ Jul
+
+
+
+
+
+ Aug
+
+
+
+
+
+ Sep
+
+
+
+
+
+ Oct
+
+
+
+
+
+ Nov
+
+
+
+
+
+ Dec
+
+
+
+
+
+ Yesterday
+
+
+
+
+
+ Sunday
+
+
+
+
+
+ Monday
+
+
+
+
+
+ Tuesday
+
+
+
+
+
+ Wednesday
+
+
+
+
+
+ Thursday
+
+
+
+
+
+ Friday
+
+
+
+
+
+ Saturday
+
+
+
+
+
+ NOW
+
+
+
+
+
+ %1M
+
+
+
+
+
+ %1H
+
+
+
+
+
+ %1D
+
+
+
+
+
+ words
+
+
+
+
+
+ You need to enter a password
+
+
+
+
+
+ Password needs to be 6 characters or more
+
+
+
+
+
+ You need to repeat your password
+
+
+
+
+
+ Passwords don't match
+
+
+
+
+
+ You need to enter a PIN
+
+
+
+
+
+ The PIN must contain only digits
+
+
+
+
+
+ The PIN must be exactly %1 digits
+
+
+
+
+
+ You need to repeat your PIN
+
+
+
+
+
+ PIN don't match
+
+
+
+
+
+
+
+ You need to enter a %1
+
+
+
+
+
+ The %1 cannot exceed %2 characters
+
+
+
+
+
+ Must be an hexadecimal color (eg: #4360DF)
+
+
+
+
+
+ Use only lowercase letters (a to z), numbers & dashes (-). Do not use chat keys.
+
+
+
+
+
+ Value has to be at least %1 characters long
+
+
+
+
+
+ Unknown
+
+
+
+
+
+ < 1 min
+
+
+
+
+
+ < 3 mins
+
+
+
+
+
+ < 5 mins
+
+
+
+
+
+ > 5 mins
+
+
+
+
+
+ years ago
+
+
+
+
+
+ year ago
+
+
+
+
+
+ months ago
+
+
+
+
+
+ month ago
+
+
+
+
+
+ weeks ago
+
+
+
+
+
+ week ago
+
+
+
+
+
+ days ago
+
+
+
+
+
+ day ago
+
+
+
+
+
+ hours ago
+
+
+
+
+
+ hour ago
+
+
+
+
+
+ mins ago
+
+
+
+
+
+ min ago
+
+
+
+
+
+ secs ago
+
+
+
+
+
+ sec ago
+
+
+
+
+
+ now
+
+
+
+ ViewProfileMenuItem
+
+
+
+
+ View Profile
+
+
+
+ WakuNodesModal
+
+
+
+
+ Waku nodes
+
+
+
+
+
+ Use Waku nodes
+
+
+
+
+
+ Select node automatically
+
+
+
+
+
+ Waku Nodes
+
+
+
+
+
+ Node %1
+
+
+
+
+
+ Add a new node
+
+
+
+ WalletFooter
+
+
+
+
+ Send
+
+
+
+
+
+ Receive
+
+
+
+
+
+ Buy / Sell
+
+
+
+ WalletView
+
+
+
+
+
+
+
+
+
+
+ Wallet
+
+
+
+
+
+ Networks
+
+
+
+
+
+ DApp Permissions
+
+
+
+
+
+ Testnet Mode
+
+
+
+ WelcomeView
+
+
+
+
+ Welcome to Status
+
+
+
+
+
+ Your fully decentralized gateway to Ethereum and Web3. Crypto wallet, privacy first group chat, and dApp browser.
+
+
+
+
+
+ I am new to Status
+
+
+
+
+
+ I already use Status
+
+
+
+ main
+
+
+
+
+ StatusQ Documentation App
+
+
+
+
+
+ Status Desktop
+
+
+
+
+
+ Open Status
+
+
+
+
+
+ Quit
+
+
+
\ No newline at end of file
diff --git a/ui/i18n/qml_en.ts b/ui/i18n/qml_en.ts
index 04f027e3d0..0e1693b9f8 100644
--- a/ui/i18n/qml_en.ts
+++ b/ui/i18n/qml_en.ts
@@ -1,10520 +1,252 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AboutView
-
-
-
-
- Check for updates
-
-
-
-
-
- Current Version
-
-
-
-
-
- Release Notes
-
-
-
-
-
- Our Principles
-
-
-
-
-
- Status desktop’s GitHub Repositories
-
-
-
-
-
- Status Desktop
-
-
-
-
-
- Status Go
-
-
-
-
-
- StatusQ
-
-
-
-
-
- go-waku
-
-
-
-
-
- Legal & Privacy Documents
-
-
-
-
-
- Terms of Use
-
-
-
-
-
- Privacy Policy
-
-
-
-
-
- Software License
-
-
-
- AcceptRejectOptionsButtonsPanel
-
-
-
-
- Decline and block
-
-
-
- AcceptTransactionView
-
-
-
-
- Accept and share address
-
-
-
-
-
- Accept and send
-
-
-
-
-
-
-
- Decline
-
-
-
- AccountView
-
-
-
-
- Type
-
-
-
-
-
- Watch-Only Account
-
-
-
-
-
- Generated by your Status seed phrase profile
-
-
-
-
-
- Imported Account
-
-
-
-
-
- Storage
-
-
-
-
-
- On Device
-
-
-
-
-
- Derivation Path
-
-
-
-
-
- Related Accounts
-
-
-
-
-
- Remove from your profile
-
-
-
-
-
- Confirm %1 Removal
-
-
-
-
-
- You will not be able to restore viewing access to this account in the future unless you enter this account’s address again.
-
-
-
-
-
- Remove Account
-
-
-
- Acknowledgements
-
-
-
-
- Secure Your Assets and Funds
-
-
-
-
-
- Your seed phrase is a 12-word passcode to your funds.
-
-
-
-
-
- Your seed phrase cannot be recovered if lost. Therefore, you <b>must</b> back it up. The simplest way is to <b>write it down offline and store it somewhere secure.</b>
-
-
-
-
-
- I have a pen and paper
-
-
-
-
-
- I am ready to write down my seed phrase
-
-
-
-
-
- I know where I’ll store it
-
-
-
-
-
- You can only complete this process once. Status will not store your seed phrase and can never help you recover it.
-
-
-
- ActivityCenterMessageComponentView
-
-
- Mark as Read
-
-
-
- Mark as Unread
-
-
-
- ActivityCenterPopup
-
-
- Show more
-
-
-
- ActivityCenterPopupTopBarPanel
-
-
-
-
- All
-
-
-
-
-
- Admin
-
-
-
-
-
- Mentions
-
-
-
-
-
- Replies
-
-
-
-
-
- Contact requests
-
-
-
-
-
- Identity verification
-
-
-
-
-
- Transactions
-
-
-
-
-
- Membership
-
-
-
-
-
- System
-
-
-
-
-
- Mark all as Read
-
-
-
-
-
- Show read notifications
-
-
-
-
-
- Hide read notifications
-
-
-
- Notification settings
-
-
-
- ActivityNotificationBase
-
-
-
-
- Mark as Read
-
-
-
-
-
- Mark as Unread
-
-
-
- AddAccountModal
-
-
-
-
- Generate an account
-
-
-
- Wrong password
-
-
-
- You need to enter a password
-
-
-
- Password needs to be 6 characters or more
-
-
-
- Enter your password…
-
-
-
- Enter your password...
-
-
-
- Password
-
-
-
-
-
- An authentication failed
-
-
-
-
-
- Enter an account name...
-
-
-
-
-
- Account name
-
-
-
-
-
- You need to enter an account name
-
-
-
-
-
- color
-
-
-
-
-
- Advanced
-
-
-
-
-
- Authenticate
-
-
-
-
-
- Loading...
-
-
-
-
-
- Add account
-
-
-
- AddEditSavedAddressPopup
-
-
-
-
-
-
- Edit saved address
-
-
-
-
-
-
-
- Add saved address
-
-
-
-
-
-
-
- Enter a name
-
-
-
-
-
-
-
- Name
-
-
-
-
-
-
-
- Name must not be blank
-
-
-
-
-
-
-
- This is not a valid account name
-
-
-
-
-
-
-
- Address
-
-
-
-
-
-
-
- Enter ENS Name or Ethereum Address
-
-
-
-
-
-
-
- Please enter a valid ENS name OR Ethereum Address
-
-
-
-
-
-
-
- Save
-
-
-
-
-
-
-
- Add address
-
-
-
- AddFavoriteModal
-
-
-
-
- Favorite added
-
-
-
-
-
- Edit
-
-
-
-
-
- Add favorite
-
-
-
-
-
- URL
-
-
-
-
-
- Paste URL
-
-
-
-
-
- Paste
-
-
-
-
-
- Pasted
-
-
-
-
-
- Please enter a valid URL
-
-
-
-
-
- Name
-
-
-
-
-
- Name of the website
-
-
-
-
-
- Please enter a name
-
-
-
-
-
- Remove
-
-
-
-
-
- Done
-
-
-
-
-
- Add
-
-
-
-
-
- Add Favorite
-
-
-
- AddShowTokenModal
-
-
-
-
- Add custom token
-
-
-
-
-
- This needs to be a valid address
-
-
-
-
-
- Invalid ERC20 address
-
-
-
-
-
- Enter contract address...
-
-
-
-
-
- Contract address
-
-
-
-
-
- The name of your token...
-
-
-
-
-
- Name
-
-
-
-
-
- ABC
-
-
-
-
-
- Symbol
-
-
-
-
-
- Decimals
-
-
-
-
-
- Changing settings failed
-
-
-
-
-
- Add
-
-
-
- AddWakuNodeModal
-
-
-
-
- Waku nodes
-
-
-
-
-
- Name
-
-
-
-
-
- Specify a name
-
-
-
-
-
- You need to enter a name
-
-
-
-
-
- History node address
-
-
-
-
-
- Storenode multiaddress
-
-
-
-
-
- You need to enter the enode address
-
-
-
-
-
- You need to enter the storenode multiaddress
-
-
-
-
-
- The format must be: enode://{enode-id}:{password}@{ip-address}:{port}
-
-
-
-
-
- Multiaddress must start with a "/"
-
-
-
-
-
- Save
-
-
-
- AddressInput
-
-
-
-
- ENS Username not found
-
-
-
- AddressRequiredValidator
-
-
-
-
- You need to request the recipient’s address first.
-Assets won’t be sent yet.
-
-
-
- AdvancedAddAccountView
-
-
-
-
- Enter address...
-
-
-
-
-
- Account address
-
-
-
-
-
- This needs to be a valid address (starting with 0x)
-
-
-
-
-
- You need to enter an address
-
-
-
- AdvancedView
-
-
-
-
- Fleet
-
-
-
-
-
- Minimize on close
-
-
-
-
-
- Application Logs
-
-
-
-
-
- Experimental features
-
-
-
-
-
- Wallet
-
-
-
- WalletSettingsLineButton
-
-
-
-
-
- Dapp Browser
-
-
-
-
-
- Community History Archive Protocol
-
-
-
-
-
- Node Management
-
-
-
- Keycard
-
-
-
-
-
- Community Permissions Settings
-
-
-
-
-
- Discord Import Tool
-
-
-
-
-
- Bloom filter level
-
-
-
-
-
- Warning!
-
-
-
-
-
-
-
- The account will be logged out. When you login again, the selected mode will be enabled
-
-
-
-
-
-
-
- Light Node
-
-
-
-
-
- Normal
-
-
-
-
-
-
-
- Full Node
-
-
-
-
-
- WakuV2 mode
-
-
-
-
-
- Developer features
-
-
-
-
-
- Full developer mode
-
-
-
-
-
- Download messages
-
-
-
-
-
- Telemetry
-
-
-
-
-
- Debug
-
-
-
-
-
- Auto message
-
-
-
-
-
- Are you sure you want to enable all the develoer features? The app will be restarted.
-
-
-
-
-
- Are you sure you want to enable telemetry? This will reduce your privacy level while using Status. You need to restart the app for this change to take effect.
-
-
-
-
-
- Are you sure you want to enable auto message? You need to restart the app for this change to take effect.
-
-
-
-
-
- Are you sure you want to %1 debug mode? You need to restart the app for this change to take effect.
-
-
-
-
-
- disable
-
-
-
-
-
- enable
-
-
-
-
-
- This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk.
-
-
-
-
-
- I understand
-
-
-
- AllowNotificationsView
-
-
-
-
- Allow notifications
-
-
-
-
-
- Status will notify you about new messages. You can
-edit your notification preferences later in settings.
-
-
-
-
-
- Ok, got it
-
-
-
- AmountInput
-
-
-
-
- The maximum number of characters is %1
-
-
-
-
-
- Invalid amount format
-
-
-
-
-
- Amount
-
-
+
+
+
AppMain
-
-
-
-
- Profile Picture
-
-
-
-
-
- Make this my Profile Pic
-
-
-
-
-
- Invite People
-
-
-
-
-
- View Community
-
-
-
-
-
- Leave Community
-
-
-
-
-
- Testnet mode is enabled. All balances, transactions and dApp interactions will be on testnets.
-
-
-
-
-
- Turn off
-
-
-
-
-
- Turn off Testnet mode
-
-
-
-
-
- Closing this banner will turn off Testnet mode.
-All future transactions will be on mainnet or other active networks.
-
-
-
-
-
- Turn off Testnet
-
-
-
-
-
- Secure your seed phrase
-
-
-
-
-
- Back up now
-
-
-
-
-
- The import of ‘%1’ from Discord to Status was stopped: <a href='#'>Critical issues found</a>
-
-
-
-
-
- ‘%1’ was successfully imported from Discord to Status
-
-
-
-
-
- Details (%1)
-
-
-
-
-
+
+
+
+
-
-
-
+
+ %n issue
+ %n issues
-
-
-
-
- Details
-
-
-
-
-
- Importing ‘%1’ from Discord to Status
-
-
-
-
-
- Check progress (%1)
-
-
-
-
-
- Check progress
-
-
-
-
-
- Visit your Community
-
-
-
-
-
- Connected
-
-
-
-
-
- Disconnected
-
-
-
-
-
- A new version of Status (%1) is available
-
-
-
- Download
-
-
-
-
-
- Your version is up to date
-
-
-
-
-
- Update
-
-
-
-
-
- Close
-
-
-
- Can not connect to mailserver
-
-
-
- The mailserver you're connecting to is unavailable.
-
-
-
- Pick another
-
-
-
- Retry
-
-
-
-
-
- Where do you want to go?
-
-
-
- AppSearch
-
-
-
-
- No results
-
-
-
-
-
- Anywhere
-
-
-
- AppearanceView
-
-
- Preview
-
-
-
-
-
- Blockchains will drop search costs, causing a kind of decomposition that allows you to have markets of entities that are horizontally segregated and vertically segregated.
-
-
-
- Size
-
-
-
- Change font size
-
-
-
-
-
- Text size
-
-
-
-
-
- XS
-
-
-
-
-
- S
-
-
-
-
-
- M
-
-
-
-
-
- L
-
-
-
-
-
- XL
-
-
-
-
-
- XXL
-
-
-
-
-
- Zoom (requires restart)
-
-
-
-
-
- Mode
-
-
-
- Change Zoom (requires restart)
-
-
-
-
-
- 50%
-
-
-
-
-
- 100%
-
-
-
-
-
- 150%
-
-
-
-
-
- 200%
-
-
-
- Appearance
-
-
-
-
-
- Light
-
-
-
-
-
- Dark
-
-
-
-
-
- System
-
-
-
- AssetAndAmountInput
-
-
-
-
- Insufficient balance
-
-
-
-
-
- Must be greater than or equal to 0
-
-
-
-
-
- This needs to be a number
-
-
-
-
-
- Please enter an amount
-
-
-
-
-
- Balance:
-
-
-
-
-
- Asset & Amount
-
-
-
-
-
- The amount is 0. Proceed only if this is desired.
-
-
-
- AssetDelegate
-
-
-
-
- %1D {1 %2?}
-
-
-
- AssetsDetailView
-
-
- Assets
-
-
-
- %1D {1 %2?}
-
-
-
-
-
- Price
-
-
-
-
-
- Balance
-
-
-
-
-
- 99+ {1H?}
-
-
-
-
-
- 99+ {1D?}
-
-
-
-
-
- 99+ {7D?}
-
-
-
-
-
- 99+ {1M?}
-
-
-
-
-
- 99+ {6M?}
-
-
-
-
-
- 99+ {1Y?}
-
-
-
-
-
- ALL
-
-
-
-
-
- Market Cap
-
-
-
-
-
- Day Low
-
-
-
-
-
- Day High
-
-
-
-
-
- Hour
-
-
-
-
-
- Day
-
-
-
-
-
- 24 Hours
-
-
-
-
-
- Overview
-
-
-
-
-
- Website
-
-
-
- AssetsView
-
-
- %1D {1 %2?}
-
-
-
- BackUpCommuntyBannerPanel
-
-
-
-
- Back up community key
-
-
-
-
-
- Back up
-
-
-
- BackupSeedModal
-
-
-
-
- Not Now
-
-
-
-
-
- Back up your seed phrase
-
-
-
-
-
- Confirm Seed Phrase
-
-
-
-
-
- Continue
-
-
-
-
-
- Complete & Delete My Seed Phrase
-
-
-
-
-
-
-
- Confirm word #%1 of your seed phrase
-
-
-
- BackupSeedStepBase
-
-
-
-
- Word #%1
-
-
-
-
-
- Enter word
-
-
-
-
-
- Wrong word
-
-
-
- BalanceExceeded
-
-
-
-
- Balance exceeded
-
-
-
-
-
- No networks available
-
-
-
- BalanceValidator
-
-
-
-
- Insufficient balance
-
-
-
- BeforeGetStartedModal
-
-
-
-
-
-
-
- Before you get started
-
-
-
- I acknowledge that status desktop is in beta and by using it I take the full responsibility for all risks concerning my data and funds
-
-
-
-
-
- Before you get started...
-
-
-
-
-
- Get Started
-
-
-
-
-
- I acknowledge that Status Desktop is in Beta and by using it I take the full responsibility for all risks concerning my data and funds.
-
-
-
-
-
- I accept Status
-
-
-
-
-
- Terms of Use
-
-
-
- Terms of service
-
-
-
-
-
- Privacy Policy
-
-
-
- Get started
-
-
-
- BlockContactConfirmationDialog
-
-
-
-
-
-
- Block User
-
-
-
-
-
- Blocking will stop new messages from reaching you from %1.
-
-
-
- BloomSelectorButton
-
-
-
-
- TODO
-
-
-
- BrowserConnectionModal
-
-
-
-
- '%1' would like to connect to
-
-
-
-
-
- Allowing authorizes this DApp to retrieve your wallet address and enable Web3
-
-
-
-
-
- Granting access authorizes this DApp to retrieve your chat key
-
-
-
-
-
- Deny
-
-
-
-
-
- Allow
-
-
-
- BrowserHeader
-
-
-
-
- Enter URL
-
-
-
- BrowserLayout
-
-
-
-
- Error sending the transaction
-
-
-
-
-
- Error signing message
-
-
-
-
-
- Transaction pending...
-
-
-
-
-
- View on etherscan
-
-
-
-
-
- Server's certificate not trusted
-
-
-
-
-
- Do you wish to continue?
-
-
-
-
-
- If you wish so, you may continue with an unverified certificate. Accepting an unverified certificate means you may not be connected with the host you tried to connect to.
-Do you wish to override the security check and continue?
-
-
-
- BrowserSettingsMenu
-
-
-
-
- New Tab
-
-
-
-
-
- Exit Incognito mode
-
-
-
-
-
- Go Incognito
-
-
-
-
-
- Zoom In
-
-
-
-
-
- Zoom Out
-
-
-
-
-
- Find
-
-
-
-
-
- Compatibility mode
-
-
-
-
-
- Developer Tools
-
-
-
-
-
- Settings
-
-
-
- BrowserTabStyle
-
-
-
-
- Start Page
-
-
-
- BrowserTabView
-
-
-
-
- Start Page
-
-
-
-
-
- New Tab
-
-
-
-
-
- Downloads Page
-
-
-
- BrowserView
-
-
-
-
- Search engine used in the address bar
-
-
-
-
-
- None
-
-
-
-
-
- Show Favorites Bar
-
-
-
-
-
- Connected DApps
-
-
-
-
-
- No connected dApps
-
-
-
-
-
- Connecting a dApp grants it permission to view your address and balances, and to send you transaction requests
-
-
-
- BrowserWalletMenu
-
-
-
-
- Mainnet
-
-
-
-
-
- Ropsten
-
-
-
-
-
- Unknown
-
-
-
-
-
- Disconnect
-
-
-
-
-
- Assets
-
-
-
-
-
- History
-
-
-
- BrowserWebEngineView
-
-
-
-
- Add Favorite
-
-
-
- ChangePasswordModal
-
-
-
-
- Change password
-
-
-
-
-
- Change password used to unlock Status on this device & sign transactions.
-
-
-
-
-
- Change Password
-
-
-
- ChangePasswordSuccessModal
-
-
-
-
- <b>Password changed</b>
-
-
-
-
-
- You need to sign in again using the new password.
-
-
-
-
-
- Sign out & Quit
-
-
-
- ChangeProfilePicModal
-
-
- Profile picture
-
-
-
- Remove
-
-
-
- Upload
-
-
-
- Please choose an image
-
-
-
- Image files (*.jpg *.jpeg *.png)
-
-
-
- ChannelIdentifierView
-
-
-
-
- Welcome to the beginning of the <span style='color: %1'>%2</span> group!
-
-
-
-
-
- Welcome to the beginning of the <span style='color: %1'>#%2</span> channel!
-
-
-
-
-
- Any messages you send here are encrypted and can only be read by you and <span style='color: %1'>%2</span>
-
-
-
- ChatButtonsPanel
-
-
- Add reaction
-
-
-
- Reply
-
-
-
- Edit
-
-
-
- Unpin
-
-
-
- Pin
-
-
-
- Delete
-
-
-
- Confirm deleting this message
-
-
-
- Are you sure you want to delete this message? Be aware that other clients are not guaranteed to delete the message as well.
-
-
-
- ChatColumnView
-
-
-
-
- Send
-
-
-
-
-
- Request Address
-
-
-
-
-
-
-
- Request
-
-
-
- ChatCommandModal
-
-
-
-
- Continue
-
-
-
-
-
- Receive on account
-
-
-
-
-
- From account
-
-
-
-
-
- Address request required
-
-
-
-
-
- From
-
-
-
-
-
- To
-
-
-
-
-
-
-
- Preview
-
-
-
-
-
- Transaction preview
-
-
-
-
-
- Next
-
-
-
- ChatCommandsPopup
-
-
-
-
- Send transaction
-
-
-
-
-
- Request transaction
-
-
-
- ChatContentView
-
-
- Contact
-
-
-
- Not a contact
-
-
-
- Public chat
-
-
-
- %1 members
-
-
-
- 1 member
-
-
-
- Connected
-
-
-
- Disconnected
-
-
-
-
-
- Blocked
-
-
-
-
-
- This user has been blocked.
-
-
-
- ChatContextMenuView
-
-
- View Members
-
-
-
-
-
- Add / remove from group
-
-
-
-
-
- Add to group
-
-
-
- Test WakuV2 - requestAllHistoricMessages
-
-
-
- Edit name
-
-
-
-
-
- Edit name and image
-
-
-
-
-
- Mark as Read
-
-
-
- Clear history
-
-
-
-
-
- Edit Channel
-
-
-
-
-
- Download
-
-
-
-
-
- Delete Channel
-
-
-
-
-
- Leave group
-
-
-
-
-
- Delete chat
-
-
-
-
-
- Leave chat
-
-
-
-
-
- Save
-
-
-
-
-
- Clear History
-
-
-
-
-
- Delete Chat
-
-
-
-
-
- Leave Chat
-
-
-
-
-
- Download messages
-
-
-
-
-
- Delete #%1
-
-
-
-
-
- Delete
-
-
-
-
-
- Are you sure you want to delete #%1 channel?
-
-
-
-
-
- Are you sure you want to delete this chat?
-
-
-
-
-
- Are you sure you want to leave this chat?
-
ChatHeaderContentView
-
-
-
-
- Search
-
-
-
-
-
- Members
-
-
-
-
-
- More
-
-
-
- Contact
-
-
-
- Not a contact
-
-
-
-
-
- Public chat
-
-
-
+
+
-
-
-
+
+ %n member
+ %n members
-
- ChatMessagesView
-
-
- Loading...
-
-
-
-
-
- Failed to send message.
-
-
-
- ChatRequestMessagePanel
-
-
-
-
- You need to be mutual contacts with this person for them to receive your messages
-
-
-
-
-
- Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat
-
-
-
-
-
- Add to contacts
-
-
-
- ChatView
-
-
-
-
- Members
-
-
-
-
-
- Remove contact
-
-
-
-
-
- Are you sure you want to remove this contact?
-
-
-
- ChooseBrowserPopup
-
-
-
-
- Choose browser
-
-
-
-
-
- Open in Status
-
-
-
-
-
- Open in my default browser
-
-
-
-
-
- Remember my choice. To override it, go to settings.
-
-
-
- ClosedEmptyPanel
-
-
-
-
- Your chats will appear here. To start new chats press the button at the top
-
-
-
- CollectibleCollectionView
-
-
-
-
- No collectibles available
-
-
-
- CollectibleDetailView
-
-
-
-
- Properties
-
-
-
- Levels
-
-
-
- Stats
-
-
-
- CollectibleDetailsHeader
-
-
- Send
-
-
-
- Assets
-
-
-
- CollectibleModal
-
-
-
-
- unnamed
-
-
-
-
-
- id
-
-
-
-
-
- description
-
-
-
-
-
- View in Opensea
-
-
-
- CollectiblesContent
-
-
-
-
- Something went wrong
-
-
-
-
-
- Reload
-
-
-
- CollectiblesHeader
-
-
-
-
- Maximum number of collectibles to display reached
-
-
-
- CollectiblesModal
-
-
-
-
- View
-
-
-
-
-
- Unnamed
-
-
-
- CollectiblesModalContent
-
-
-
-
- ID
-
-
-
-
-
- Description
-
-
-
- CollectiblesPanel
-
-
-
-
- Specific amount
-
-
-
- Amount
-
-
-
- CollectiblesStore
-
-
-
-
- Collectibles
-
-
-
- CollectiblesView
-
-
-
-
- Collectibles will appear here
-
-
-
- CommunitiesGridView
-
-
-
- Featured
-
-
-
-
- Popular
-
-
CommunitiesListPanel
-
-
-
-
- Leave community
-
-
-
-
-
- Leave %1
-
-
-
+
+
-
-
-
+
+ %n member
+ %n members
-
-
-
-
- Leave Community
-
-
-
-
-
- Are you sure you want to leave? Once you leave, you will have to request to rejoin if you change your mind.
-
-
-
-
-
- Cancel
-
CommunitiesPopup
-
-
-
-
- Communities
-
-
-
-
-
- Access existing community
-
-
-
-
-
- Search for communities or topics
-
-
-
+
+
-
-
-
+
+ %n member
+ %n members
-
-
- %1 members
-
-
-
-
-
- Create a community
-
-
-
- CommunitiesPortalLayout
-
-
-
-
- Find community
-
-
-
- Search
-
-
-
- Import Community
-
-
-
-
-
- Import using key
-
-
-
-
-
- Create New Community
-
-
-
- Featured
-
-
-
- Popular
-
-
-
-
-
- No communities found
-
-
-
-
-
- Create new community
-
-
-
-
-
- Create a new Status community
-
-
-
-
-
- Create new
-
-
-
-
-
- '%1' import in progress...
-
-
-
-
-
- Import existing Discord community into Status
-
-
-
-
-
- Import existing
-
-
-
-
-
- Your current import must finished or be cancelled before a new import can be started.
-
-
-
- CommunitiesView
-
-
-
-
- Import community
-
-
-
-
-
- Communities you've joined
-
-
-
- CommunityBannerPicker
-
-
-
-
-
-
- Community banner
-
-
-
-
-
- Choose an image for banner
-
-
-
-
-
- Make this my Community banner
-
-
-
- CommunityChannelsAndCategoriesBannerPanel
-
-
-
-
- Expand your community by adding more channels and categories
-
-
-
-
-
- Add channels
-
-
-
-
-
- Add categories
-
-
-
- CommunityColorPanel
-
-
-
-
- Community Colour
-
-
-
-
-
- Select Community Colour
-
-
-
-
-
- This is not a valid color
-
-
-
-
-
- Preview
-
-
-
-
-
- White text should be legible on top of this color
-
-
-
-
-
- Standard colors
-
-
-
- This is not a valid colour
-
-
-
- White text should be legable on top of this colour
-
-
-
- Standard colours
-
-
-
- CommunityColorPicker
-
-
- Community colour
-
-
-
-
-
- Community color
-
CommunityColumnView
-
-
- 1 Member
-
-
-
- %1 Members
-
-
-
+
+
-
-
-
+
+ %n member
+ %n members
-
-
-
-
- Start chat
-
-
-
-
-
- Membership requests
-
-
-
-
-
-
-
- Create channel
-
-
-
-
-
-
-
- Create category
-
-
-
-
-
-
-
- Invite people
-
-
-
-
-
- Unmute category
-
-
-
-
-
- Mute category
-
-
-
-
-
- Edit Category
-
-
-
-
-
- Delete Category
-
-
-
-
-
- Delete %1 category
-
-
-
-
-
- Are you sure you want to delete %1 category? Channels inside the category won’t be deleted.
-
-
-
-
-
- Create channel or category
-
-
-
-
-
- Error deleting the category
-
-
-
- CommunityDelegate
-
-
-
-
- Admin
-
-
-
-
-
- Member
-
-
-
- CommunityDescriptionInput
-
-
- Description
-
-
-
-
-
- Give it a short description
-
-
-
-
-
- What your community is about
-
-
-
-
-
- community description
-
CommunityDetailPopup
-
-
-
-
- Public community
-
-
-
-
-
- Invitation only community
-
-
-
-
-
- On request community
-
-
-
-
-
-
-
- Unknown community
-
-
-
-
-
- - ENS only
-
-
-
-
-
- %1 members
-
-
-
-
-
- Channels
-
-
-
-
-
-
-
- Join ‘%1’
-
-
-
-
-
- Pending
-
-
-
-
-
- You need to be invited
-
-
-
-
-
- Request to join ‘%1’
-
-
-
-
-
- Error joining the community
-
-
-
- CommunityIntroDialog
-
-
-
-
- Welcome to %1
-
-
-
-
-
- Join %1
-
-
-
-
-
- Community <b>%1</b> has no intro message...
-
-
-
-
-
- I agree with the above
-
-
-
- CommunityIntroMessageInput
-
-
-
-
- Community introduction and rules
-
-
-
-
-
- What new members will read before joining (eg. community rules, welcome message, etc.). Members will need to tick a check box agreeing to these rules before they are allowed to join your community.
-
-
-
-
-
- community intro message
-
-
-
- CommunityLogoPicker
-
-
-
-
-
-
- Community logo
-
-
-
-
-
- Choose an image as logo
-
-
-
-
-
- Make this my Community logo
+
+
+
+
+
+ %n member
+ %n members
+
CommunityMembersSettingsPanel
-
-
-
-
- Members
-
-
-
- Member name
-
-
-
- Membership requests
-
-
-
- Community members will appear here
-
-
-
- No contacts found
-
-
-
- You
-
-
-
-
-
- All Members
-
-
-
-
-
- Pending Requests
-
-
-
-
-
- Rejected
-
-
-
-
-
- Banned
-
-
-
-
-
- No members to search
-
-
-
- Search %1's %2 member%3
-
-
-
-
-
-
-
+
+
+
+
+ Search %1's %n member
+ Search %1's %n members
-
-
-
-
- No pending requests to search
-
-
-
-
-
- Search %1's %2 pending request%3
-
-
-
-
-
- No rejected members to search
-
-
-
-
-
- Search %1's %2 rejected member%3
-
-
-
-
-
- No banned members to search
-
-
-
-
-
- Search %1's %2 banned member%3
-
-
-
-
-
- Are you sure you ban <b>%1</b> from %2?
-
-
-
-
-
- Ban %1
-
-
-
-
-
-
-
- Cancel
-
-
-
-
-
- Ban
-
-
-
-
-
- Are you sure you kick <b>%1</b> from %2?
-
-
-
-
-
- Kick %1
-
-
-
-
-
- Kick
-
-
-
- CommunityMembersTabPanel
-
-
-
-
- Kick
-
-
-
-
-
- Ban
-
-
-
-
-
- Unban
-
-
-
-
-
- Accept
-
-
-
-
-
- Reject
-
-
-
- CommunityNameInput
-
-
- Community name
-
-
-
-
-
- Name your community
-
-
-
-
-
- A catchy name
-
-
-
-
-
- community name
-
-
-
- CommunityNewPermissionView
-
-
-
-
- Anyone
-
-
-
-
-
- Who holds
-
-
-
-
-
- Example: 10 SNT
-
-
-
-
-
- and
-
-
-
-
-
- or
-
-
-
- %1D {1 %2?}
-
-
-
-
-
- ENS username on '%1' domain
-
-
-
-
-
- Any ENS username
-
-
-
-
-
- Is allowed to
-
-
-
-
-
- Example: View and post
-
-
-
-
-
- In
-
-
-
-
-
- Example: `#general` channel
-
-
-
-
-
- Private
-
-
-
-
-
- Make this permission private to hide it from members who don’t meet it’s requirements
-
-
-
-
-
- Create permission
-
-
-
- CommunityOptions
-
-
-
-
- Community history service
-
-
-
-
-
- Request to join required
-
-
-
-
-
- Any member can pin a message
-
-
-
- CommunityOutroMessageInput
-
-
-
-
- Leaving community message
-
-
-
-
-
- The message a member will see when they leave your community
-
-
-
-
-
- community intro message
-
-
-
- CommunityOverviewSettingsPanel
-
-
-
-
- Overview
-
-
-
-
-
-
-
- Edit Community
-
-
-
-
-
- This node is the Community Owner Node. For your Community to function correctly try to keep this computer with Status running and onlinie as much as possible.
-
-
-
-
-
- Welcome to your community!
-
-
-
-
-
- Invite new people
-
-
-
-
-
- Try an airdrop to reward your community for engagement!
-
-
-
-
-
- Airdrop Tokens
-
-
-
-
-
- Back up community key
-
-
-
-
-
- Back up
-
-
-
- CommunityPermissionsSettingsPanel
-
-
-
-
-
-
- Permissions
-
-
-
-
-
- New permission
-
-
-
- CommunityProfilePopup
-
-
-
-
- Public community
-
-
-
-
-
- Invitation only community
-
-
-
-
-
- On request community
-
-
-
-
-
- Unknown community
-
-
-
-
-
- Invite friends
-
-
-
-
-
- Invite
-
-
-
- CommunityProfilePopupInviteFriendsPanel
-
-
-
-
- Search contacts
-
-
-
-
-
- Share community
-
-
-
-
-
- Copied!
-
-
-
-
-
- Contacts
-
-
-
- CommunityProfilePopupInviteMessagePanel
-
-
-
-
- Invitation Message
-
-
-
-
-
- The message a contact will get with community invitation
-
-
-
-
-
- Invites will be sent to:
-
-
-
- CommunityProfilePopupOverviewPanel
-
-
-
-
- Share community
-
-
-
-
-
- Copied!
-
-
-
-
-
- Transfer ownership
-
-
-
-
-
- Leave community
-
CommunitySettingsView
-
-
-
-
-
-
-
-
- Overview
-
-
-
-
-
-
-
- Members
-
-
-
-
-
- Permissions
-
-
-
+
+
-
-
-
+
+ %n member
+ %n members
-
-
- Settings
-
-
-
-
-
- Open legacy popup (to be removed)
-
-
-
-
-
- Back to community
-
-
-
-
-
- Error editing the community
-
-
-
- CommunityTagsPanel
-
-
-
-
- Community Tags
-
-
-
-
-
- Confirm Community Tags
-
-
-
-
-
- Select tags that will fit your Community
-
-
-
-
-
- Search tags
-
-
-
-
-
- Selected tags
-
-
-
-
-
- %1 / %2
-
-
-
- CommunityTagsPicker
-
-
-
-
- Tags
-
-
-
-
-
- Choose tags describing the community
-
-
-
- CommunityWelcomeBannerPanel
-
-
-
-
- Welcome to your community!
-
-
-
-
-
- Add members
-
-
-
-
-
- Manage community
-
-
-
- CommunityWelcomePermissionsView
-
-
-
-
- Permissions
-
-
-
-
-
- You can manage your community by creating and issuing membership and access permissions
-
-
-
-
-
- Give individual members access to private channels
-
-
-
-
-
- Monetise your community with subscriptions and fees
-
-
-
-
-
- Require holding a token or NFT to obtain exclusive membership rights
-
-
-
-
-
- Add permission
-
-
-
- CompactMessageView
-
-
- Pinned by %1
-
-
-
- Cancel
-
-
-
- Save
-
-
-
- ConfirmAddExistingKeyModal
-
-
-
-
- Enter seed phrase
-
-
-
-
-
- Do you want to add another existing key?
-
-
-
-
-
- Add another existing key
-
-
-
- ConfirmAppRestartModal
-
-
-
-
- Application Restart
-
-
-
-
-
- Please restart the application to apply the changes.
-
-
-
-
-
- Restart
-
-
-
- ConfirmPasswordView
-
-
-
-
- Passwords don't match
-
-
-
-
-
- Have you written down your password?
-
-
-
-
-
- You will never be able to recover your password if you lose it.
-
-
-
-
-
- If you need to, write it using pen and paper and keep in a safe place.
-
-
-
-
-
- If you lose your password you will lose access to your Status profile.
-
-
-
-
-
- Confirm your password (again)
-
-
-
- Confirm you password (again)
-
-
-
-
-
- Finalise Status Password Creation
-
-
-
- Keys for this account already exist
-
-
-
- Keys for this account already exist and can't be added again. If you've lost your password, passcode or Keycard, uninstall the app, reinstall and access your keys by entering your seed phrase
-
-
-
- Login failed
-
-
-
- Login failed. Please re-enter your password and try again.
-
-
-
- ConfirmSeedPhrasePanel
-
-
-
-
- Write down your 12-word seed phrase to keep offline
-
-
-
-
-
- Reveal seed phrase
-
-
-
-
-
- The next screen contains your seed phrase.
-<b>Anyone</b> who sees it can use it to access to your funds.
-
-
-
- ConfirmStoringSeedPhrasePanel
-
-
-
-
- Complete back up
-
-
-
-
-
- Store Your Phrase Offline and Complete Your Back Up
-
-
-
-
-
- By completing this process, you will remove your seed phrase from this application’s storage. This makes your funds more secure.
-
-
-
-
-
- You will remain logged in, and your seed phrase will be entirely in your hands.
-
-
-
-
-
- I acknowledge that Status will not be able to show me my seed phrase again.
-
-
-
- I aknowledge that Status will not be able to show me my seed phrase again.
-
-
-
- ConfirmationDialog
-
-
-
-
- Confirm
-
-
-
-
-
- Reject
-
-
-
-
-
- Cancel
-
-
-
-
-
- Are you sure you want to do this?
-
-
-
-
-
- Confirm your action
-
-
-
-
-
- Do not show this again
-
-
-
- ConfirmationPopup
-
-
-
-
- Enable Tenor GIFs?
-
-
-
-
-
- Once enabled, GIFs posted in the chat may share your metadata with Tenor.
-
-
-
-
-
- Enable
-
-
-
- Constants
-
-
-
-
- Username must be at least 5 characters
-
-
-
-
-
- Only letters, numbers, underscores and hyphens allowed
-
-
-
-
-
- 24 character username limit
-
-
-
-
-
- Usernames ending with '-eth' are not allowed
-
-
-
-
-
- Usernames ending with '_eth' are not allowed
-
-
-
-
-
- Usernames ending with '.eth' are not allowed
-
-
-
-
-
- Sorry, the name you have chosen is not allowed, try picking another username
-
-
-
-
-
- (edited)
-
-
-
-
-
- Username already taken :(
-
-
-
-
-
- Username doesn’t belong to you :(
-
-
-
-
-
- Continuing will connect this username with your chat key.
-
-
-
-
-
- ✓ Username available!
-
-
-
-
-
- Username is already connected with your chat key and can be used inside Status.
-
-
-
-
-
- This user name is owned by you and connected with your chat key. Continue to set `Show my ENS username in chats`.
-
-
-
-
-
- Continuing will require a transaction to connect the username with your current chat key.
-
-
-
- Contact
-
-
-
-
- Admin
-
-
-
- ContactPanel
-
-
-
-
- Respond to ID Request
-
-
-
-
-
- See ID Request
-
-
-
- Rename
-
-
-
- ContactRequestsPopup
-
-
-
-
- Contact requests
-
-
-
-
-
- Decline all contacts
-
-
-
-
-
- Are you sure you want to decline all these contact requests
-
-
-
-
-
- Accept all contacts
-
-
-
-
-
- Are you sure you want to accept all these contact requests
-
-
-
-
-
- Decline all
-
-
-
-
-
- Accept all
-
-
-
- ContactSelector
-
-
-
-
- Please select a contact
-
-
-
-
-
- Select a contact
-
-
-
-
-
- Contact does not have an ENS address. Please send a transaction in chat.
-
-
-
-
-
- No contact selected
-
-
-
-
-
- You don’t have any contacts yet
-
-
-
- ContactVerificationRequestPopup
-
-
-
-
- %1 is asking you to verify your identity
-
-
-
-
-
- %1 would like to verify your identity. Answer the question to prove your identity to %2
-
-
-
-
-
- Provide answer to verification request from this contact.
-
-
-
- Your answer has been sent to %1.
-
-
-
-
-
- You're answer has been sent to %1.
-
-
-
-
-
- Refuse Verification
-
-
-
-
-
- Send Answer
-
-
-
-
-
- Change answer
-
-
-
-
-
- Close
-
-
-
- ContactsColumnView
-
-
-
-
- Chat
-
-
-
-
-
- Search
-
-
-
-
-
- Join public chats
-
-
-
-
-
- Start chat
-
-
-
-
-
- Contact requests
-
-
-
-
-
- Community imported
-
-
-
-
-
- Importing community is in progress
-
-
-
- ContactsListAndSearch
-
-
-
-
- Enter a valid chat key or ENS username
-
-
-
-
-
-
-
- Can't chat with yourself
-
-
-
-
-
- Enter ENS username or chat key
-
-
-
- ContactsListPanel
-
-
-
-
- Contact Request Sent
-
-
-
-
-
- Contact Request Rejected
-
-
-
- ContactsView
-
-
-
-
- Send contact request to chat key
-
-
-
-
-
- Search by a display name or chat key
-
-
-
-
-
-
-
- Contacts
-
-
-
-
-
- Pending Requests
-
-
-
-
-
- Blocked
-
-
-
-
-
- Identity Verified Contacts
-
-
-
-
-
- You don’t have any contacts yet
-
-
-
-
-
- Received
-
-
-
-
-
- Sent
-
-
-
-
-
- Remove contact
-
-
-
-
-
- Are you sure you want to remove this contact?
-
-
-
- Controls
-
-
-
-
- XS
-
-
-
-
-
- S
-
-
-
-
-
- M
-
-
-
-
-
- L
-
-
-
-
-
- XL
-
-
-
-
-
- XXL
-
-
-
-
-
- 50%
-
-
-
-
-
- 100%
-
-
-
-
-
- 150%
-
-
-
-
-
- 200%
-
-
-
- CopyToClipBoardButton
-
-
-
-
- Copied!
-
-
-
- CreateCategoryPopup
-
-
-
-
- Edit category
-
-
-
-
-
- New category
-
-
-
-
-
- Category title
-
-
-
-
-
- Name the category
-
-
-
-
-
- category name
-
-
-
-
-
- Channels
-
-
-
-
-
- Delete category
-
-
-
-
-
- Delete %1 category
-
-
-
-
-
- Are you sure you want to delete %1 category? Channels inside the category won’t be deleted.
-
-
-
-
-
- Save
-
-
-
-
-
- Create
-
-
-
-
-
- Error editing the category
-
-
-
-
-
- Error creating the category
-
-
-
- CreateChannelPopup
-
-
-
-
- New channel
-
-
-
-
-
- Edit #%1
-
-
-
-
-
- Channel name
-
-
-
- Name the channel
-
-
-
-
-
- # Name the channel
-
-
-
-
-
- channel name
-
-
-
-
-
- Channel colour
-
-
-
-
-
- Pick a color
-
-
-
-
-
- Description
-
-
-
-
-
- Describe the channel
-
-
-
-
-
- channel description
-
-
-
-
-
- Delete channel
-
-
-
-
-
- Save changes
-
-
-
-
-
- Create channel
-
-
-
- Save
-
-
-
- Create
-
-
-
-
-
- Error creating the community
-
-
-
- CreateChatView
-
-
-
-
- To:
-
-
-
-
-
- USER LIMIT REACHED
-
-
-
-
-
-
-
- Contacts
-
-
-
-
-
-
-
- You can only send direct messages to your Contacts.
-
-Send a contact request to the person you would like to chat with, you will be able to chat with them once they have accepted your contact request.
-
-
-
- You can only send direct messages to your Contacts.
-
-
-Send a contact request to the person you would like to chat with, you will be
- able to
-chat with them once they have accepted your contact request.
-
-
-
- You can only send direct messages to your Contacts.
-
-
-Send a contact request to the person you would like to chat with, you will be able to
-chat with them once they have accepted your contact request.
-
-
-
- Confirm
-
-
-
- CreateCommunityPopup
-
-
-
-
- Import a community from Discord into Status
-
-
-
-
-
- Create New Community
-
-
-
-
-
- Next
-
-
-
-
-
- Create Community
-
-
-
-
-
- Start Discord import
-
-
-
-
-
- Clear all
-
-
-
-
-
- Proceed with (%1/%2) files
-
-
-
-
-
- Validate (%1/%2) files
-
-
-
-
-
- Import files
-
-
-
-
-
- Select Discord JSON files to import
-
-
-
-
-
- Some of your community files cannot be used
-
-
-
-
-
- Uncheck any files you would like to exclude from the import
-
-
-
-
-
- (JSON file format only)
-
-
-
-
-
- Browse files
-
-
-
-
-
- Export your Discord JSON data using %1
-
-
-
-
-
- Refer to this <a href='https://github.com/Tyrrrz/DiscordChatExporter/wiki'>wiki</a> if you have any queries
-
-
-
-
-
- Choose files to import
-
-
-
-
-
- JSON files (%1)
-
-
-
-
-
- Please select the categories and channels you would like to import
-
-
-
-
-
- Import all history
-
-
-
-
-
- Start date
-
-
-
-
-
- Error creating the community
-
-
-
- CreatePasswordModal
-
-
-
-
-
-
- Store password
-
-
-
- Create a password
-
-
-
-
-
- Current password...
-
-
-
- New password...
-
-
-
-
-
- Confirm password…
-
-
-
- At least 6 characters. You will use this password to unlock status on this device & sign transactions.
-
-
-
- Create password
-
-
-
-
-
- Enter new PIN
-
-
-
-
-
- Repeat PIN
-
-
-
-
-
- Store PIN
-
-
-
-
-
- Error importing account
-
-
-
-
-
- An error occurred while importing your account:
-
-
-
-
-
- Login failed
-
-
-
-
-
- Login failed. Please re-enter your password and try again.
-
-
-
-
-
- Incorrect password
-
-
-
- CreatePasswordView
-
-
-
-
- Create password
-
-
-
- CryptoServicesModal
-
-
-
-
- Buy / Sell crypto
-
-
-
-
-
- Choose a service you'd like to use to buy crypto
-
-
-
- CurrenciesStore
-
-
-
-
-
-
- US Dollars
-
-
-
-
-
-
-
- British Pound
-
-
-
-
-
-
-
- Euros
-
-
-
-
-
-
-
- Russian ruble
-
-
-
-
-
-
-
- South Korean won
-
-
-
-
-
-
-
- Ethereum
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Tokens
-
-
-
-
-
-
-
- Bitcoin
-
-
-
-
-
-
-
- Status Network Token
-
-
-
-
-
-
-
- Dai
-
-
-
-
-
-
-
- United Arab Emirates dirham
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Other Fiat
-
-
-
-
-
-
-
- Afghan afghani
-
-
-
-
-
-
-
- Argentine peso
-
-
-
-
-
-
-
- Australian dollar
-
-
-
-
-
-
-
- Barbadian dollar
-
-
-
-
-
-
-
- Bangladeshi taka
-
-
-
-
-
-
-
- Bulgarian lev
-
-
-
-
-
-
-
- Bahraini dinar
-
-
-
-
-
-
-
- Brunei dollar
-
-
-
-
-
-
-
- Bolivian boliviano
-
-
-
-
-
-
-
- Brazillian real
-
-
-
-
-
-
-
- Bhutanese ngultrum
-
-
-
-
-
-
-
- Canadian dollar
-
-
-
-
-
-
-
- Swiss franc
-
-
-
-
-
-
-
- Chilean peso
-
-
-
-
-
-
-
- Chinese yuan
-
-
-
-
-
-
-
- Colombian peso
-
-
-
-
-
-
-
- Costa Rican colón
-
-
-
-
-
-
-
- Czech koruna
-
-
-
-
-
-
-
- Danish krone
-
-
-
-
-
-
-
- Dominican peso
-
-
-
-
-
-
-
- Egyptian pound
-
-
-
-
-
-
-
- Ethiopian birr
-
-
-
-
-
-
-
- Georgian lari
-
-
-
-
-
-
-
- Ghanaian cedi
-
-
-
-
-
-
-
- Hong Kong dollar
-
-
-
-
-
-
-
- Croatian kuna
-
-
-
-
-
-
-
- Hungarian forint
-
-
-
-
-
-
-
- Indonesian rupiah
-
-
-
-
-
-
-
- Israeli new shekel
-
-
-
-
-
-
-
- Indian rupee
-
-
-
-
-
-
-
- Icelandic króna
-
-
-
-
-
-
-
- Jamaican dollar
-
-
-
-
-
-
-
- Japanese yen
-
-
-
-
-
-
-
- Kenyan shilling
-
-
-
-
-
-
-
- Kuwaiti dinar
-
-
-
-
-
-
-
- Kazakhstani tenge
-
-
-
-
-
-
-
- Sri Lankan rupee
-
-
-
-
-
-
-
- Moroccan dirham
-
-
-
-
-
-
-
- Moldovan leu
-
-
-
-
-
-
-
- Mauritian rupee
-
-
-
-
-
-
-
- Malawian kwacha
-
-
-
-
-
-
-
- Mexican peso
-
-
-
-
-
-
-
- Malaysian ringgit
-
-
-
-
-
-
-
- Mozambican metical
-
-
-
-
-
-
-
- Namibian dollar
-
-
-
-
-
-
-
- Nigerian naira
-
-
-
-
-
-
-
- Norwegian krone
-
-
-
-
-
-
-
- Nepalese rupee
-
-
-
-
-
-
-
- New Zealand dollar
-
-
-
-
-
-
-
- Omani rial
-
-
-
-
-
-
-
- Peruvian sol
-
-
-
-
-
-
-
- Papua New Guinean kina
-
-
-
-
-
-
-
- Philippine peso
-
-
-
-
-
-
-
- Pakistani rupee
-
-
-
-
-
-
-
- Polish złoty
-
-
-
-
-
-
-
- Paraguayan guaraní
-
-
-
-
-
-
-
- Qatari riyal
-
-
-
-
-
-
-
- Romanian leu
-
-
-
-
-
-
-
- Serbian dinar
-
-
-
-
-
-
-
- Saudi riyal
-
-
-
-
-
-
-
- Swedish krona
-
-
-
-
-
-
-
- Singapore dollar
-
-
-
-
-
-
-
- Thai baht
-
-
-
-
-
-
-
- Trinidad and Tobago dollar
-
-
-
-
-
-
-
- New Taiwan dollar
-
-
-
-
-
-
-
- Tanzanian shilling
-
-
-
-
-
-
-
- Turkish lira
-
-
-
-
-
-
-
- Ukrainian hryvnia
-
-
-
-
-
-
-
- Ugandan shilling
-
-
-
-
-
-
-
- Uruguayan peso
-
-
-
-
-
-
-
- Venezuelan bolívar
-
-
-
-
-
-
-
- Vietnamese đồng
-
-
-
-
-
-
-
- South African rand
-
-
-
- CustomSocialLinkInput
-
-
-
-
- Hyperlink Text
-
-
-
-
-
- Example: My Myspace Profile
-
-
-
-
-
- URL
-
-
-
-
-
- Link URL
-
-
-
-
-
- Preview
-
-
-
-
-
- My Myspace Profile
-
-
-
-
-
- Remove
-
-
-
- DateGroup
-
-
- Today
-
-
-
- Yesterday
-
-
-
- January
-
-
-
- February
-
-
-
- March
-
-
-
- April
-
-
-
- May
-
-
-
- June
-
-
-
- July
-
-
-
- August
-
-
-
- September
-
-
-
- October
-
-
-
- November
-
-
-
- December
-
-
-
- DefaultDAppExplorerView
-
-
-
-
- Default DApp explorer
-
-
-
-
-
- none
-
-
-
- DemoApp
-
-
-
-
- Invite People
-
-
-
-
-
- View Community
-
-
-
-
-
- Edit Community
-
-
-
-
-
- Leave Community
-
-
-
- DerivationPathsPanel
-
-
-
-
- Derivation Path
-
-
-
-
-
- Reset
-
-
-
- DerivedAddressesPanel
-
-
-
-
- No activity
-
-
-
-
-
- Pending
-
-
-
-
-
- Invalid path
-
-
-
-
-
-
-
-
-
- Has Activity
-
-
-
-
-
-
-
-
-
- No Activity
-
-
-
-
-
- Account
-
-
-
- DevicesView
-
-
-
-
- Please set a name for your device.
-
-
-
-
-
- Specify a name
-
-
-
-
-
- Continue
-
-
-
-
-
- Advertise device
-
-
-
-
-
- Pair your devices to sync contacts and chats between them
-
-
-
-
-
- Learn more
-
-
-
-
-
- Paired devices
-
-
-
-
-
- Syncing...
-
-
-
-
-
- Sync all devices
-
DiscordImportProgressContents
-
-
-
- Delete community & restart import
-
-
-
-
- Cancel import
-
-
-
-
- Restart import
-
-
-
-
- Hide window
-
-
-
-
- Visit your new community
-
-
-
-
- Setting up your community
-
-
-
-
- Importing channels
-
-
-
-
- Importing messages
-
-
-
-
- Downloading assets
-
-
-
-
- Initializing community
-
-
-
-
- ✓ Complete
-
-
-
-
- Import stopped...
-
-
-
-
- Pending...
-
-
-
-
- Saving... This can take a moment, almost done!
-
-
-
-
- Working...
-
-
-
-
- %1D {1%?}
-
-
-
-
- %1 more issue(s) downloading assets
-
-
-
-
- Importing ‘%1’ from Discord...
-
-
-
-
- Importing ‘%1’ from Discord stopped...
-
-
-
-
- Importing ‘%1’ stopped due to a critical issue...
-
-
-
-
-
-
+
+
+
+
+ ‘%1’ was imported with %n issue.
+ ‘%1’ was imported with %n issues.
-
-
-
- ‘%1’ was successfully imported from Discord.
-
-
-
-
- Your Discord community import is in progress...
-
-
-
-
- This process can take a while. Feel free to hide this window and use Status normally in the meantime. We’ll notify you when the Community is ready for you.
-
-
-
-
- If there were any issues with your import you can upload new JSON files via the community page at any time.
-
-
-
-
- Are you sure you want to cancel the import?
-
-
-
-
- Your new Status community will be deleted and all information entered will be lost.
-
-
-
-
- Delete community
-
-
-
-
- Continue importing
-
-
-
- DiscordImportProgressDialog
-
-
-
- Import a community from Discord into Status
-
-
-
- DisplayNamePopup
-
-
-
-
- Edit
-
-
-
-
-
- Display Name
-
-
-
-
-
- OK
-
-
-
- Ok
-
-
-
- DownloadBar
-
-
-
-
- Cancelled
-
-
-
-
-
- Paused
-
-
-
-
-
- Show All
-
-
-
- DownloadMenu
-
-
-
-
- Open
-
-
-
-
-
- Show in folder
-
-
-
-
-
- Pause
-
-
-
-
-
- Resume
-
-
-
-
-
- Cancel
-
-
-
- DownloadPage
-
-
-
-
- Thanks for using Status
-
-
-
-
-
- You're curently using version %1 of Status.
-
-
-
-
-
- There's new version available to download.
-
-
-
-
-
- Get Status %1
-
-
-
- DownloadView
-
-
-
-
- Cancelled
-
-
-
-
-
- Paused
-
-
-
-
-
- Downloaded files will appear here.
-
-
-
- ENSPopup
-
-
-
-
- Primary username
-
-
-
-
-
- Your messages are displayed to others with this username:
-
-
-
-
-
- Once you select a username, you won’t be able to disable it afterwards. You will only be able choose a different username to display.
-
-
-
- EmojiReactionsPanel
-
-
- Add reaction
-
-
-
- EmptyChatPanel
-
-
-
-
- Share your chat key
-
-
-
-
-
- or
-
-
-
-
-
- invite
-
-
-
-
-
- friends to start messaging in Status
-
-
-
- EmptyPlaceholder
-
-
-
-
- Favorite GIFs will appear here
-
-
-
-
-
- Recent GIFs will appear here
-
-
-
-
-
- Error while contacting Tenor API, please retry.
-
-
-
-
-
- Retry
-
-
-
- EnsAddedView
-
-
-
-
- ENS usernames
-
-
-
-
-
- Username added
-
-
-
-
-
- %1 is now connected with your chat key and can be used in Status.
-
-
-
-
-
- Ok, got it
-
-
-
- EnsConnectedView
-
-
-
-
- ENS usernames
-
-
-
-
-
- Username added
-
-
-
-
-
- %1 will be connected once the transaction is complete.
-
-
-
-
-
- You can follow the progress in the Transaction History section of your wallet.
-
-
-
-
-
- Ok, got it
-
-
-
- EnsDetailsView
-
-
-
-
- Wallet address
-
-
-
-
-
-
-
- Copied to clipboard!
-
-
-
-
-
- Key
-
-
-
-
-
- Release your username
-
-
-
- Connect username with your pubkey
-
-
-
-
-
- Release username
-
-
-
-
-
- Username locked. You won't be able to release it until %1
-
-
-
-
-
- Back
-
-
-
- EnsListView
-
-
-
-
- Hey
-
-
-
-
-
-
-
- (pending)
-
-
-
-
-
- ENS usernames
-
-
-
-
-
- Add username
-
-
-
-
-
- Your usernames
-
-
-
-
-
- Chat settings
-
-
-
-
-
- Primary Username
-
-
-
-
-
- None selected
-
-
-
-
-
- You’re displaying your ENS username in chats
-
-
-
- EnsPanel
-
-
-
-
- Any domain
-
-
-
-
-
- Custom subdomain
-
-
-
-
-
- Subdomain not recognized
-
-
-
- EnsRegisteredView
-
-
-
-
- ENS usernames
-
-
-
-
-
- Username added
-
-
-
-
-
- Nice! You own %1.stateofus.eth once the transaction is complete.
-
-
-
-
-
- You can follow the progress in the Transaction History section of your wallet.
-
-
-
-
-
- Ok, got it
-
-
-
- EnsReleasedView
-
-
-
-
- ENS usernames
-
-
-
-
-
- Username removed
-
-
-
-
-
- The username %1 will be removed and your deposit will be returned once the transaction is mined
-
-
-
-
-
- You can follow the progress in the Transaction History section of your wallet.
-
-
-
-
-
- Ok, got it
-
-
-
- EnsSearchView
-
-
-
-
- At least 4 characters. Latin letters, numbers, and lowercase only.
-
-
-
-
-
- Letters and numbers only.
-
-
-
-
-
- Type the entire username including the custom domain like username.domain.eth
-
-
-
-
-
- Connect username with your pubkey
-
-
-
-
-
- Custom domain
-
-
-
-
-
- I want a stateofus.eth domain
-
-
-
-
-
- I own a name on another domain
-
-
-
- EnsTermsAndConditionsView
-
-
-
-
- ENS usernames
-
-
-
-
-
- Terms of name registration
-
-
-
-
-
- Funds are deposited for 1 year. Your SNT will be locked, but not spent.
-
-
-
-
-
- After 1 year, you can release the name and get your deposit back, or take no action to keep the name.
-
-
-
-
-
- If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held.
-
-
-
-
-
- The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them.
-
-
-
-
-
- Your address(es) will be publicly associated with your ENS name.
-
-
-
-
-
- Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms.
-
-
-
-
-
- You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer.
-
-
-
-
-
- These terms are guaranteed by the smart contract logic at addresses:
-
-
-
-
-
- %1 (Status UsernameRegistrar).
-
-
-
-
-
-
-
- <a href='%1%2'>Look up on Etherscan</a>
-
-
-
-
-
- %1 (ENS Registry).
-
-
-
-
-
- Wallet address
-
-
-
-
-
-
-
- Copied to clipboard!
-
-
-
-
-
- Key
-
-
-
-
-
- Agree to <a href="#">Terms of name registration.</a> I understand that my wallet address will be publicly connected to my username.
-
-
-
-
-
- Back
-
-
-
-
-
- 10 SNT
-
-
-
-
-
- Deposit
-
-
-
-
-
- Not enough SNT
-
-
-
-
-
- Register
-
-
-
- EnsView
-
-
-
-
-
-
- Transaction pending...
-
-
-
-
-
-
-
- View on etherscan
-
-
-
-
-
- ENS Registration failed
-
-
-
-
-
- ENS Registration completed
-
-
-
-
-
- Updating ENS pubkey failed
-
-
-
-
-
- Updating ENS pubkey completed
-
-
-
- EnsWelcomeView
-
-
-
-
- Get a universal username
-
-
-
-
-
- ENS names transform those crazy-long addresses into unique usernames.
-
-
-
-
-
- Customize your chat name
-
-
-
-
-
- An ENS name can replace your random 3-word name in chat. Be @yourname instead of %1.
-
-
-
-
-
- Simplify your ETH address
-
-
-
-
-
- You can receive funds to your easy-to-share ENS name rather than your hexadecimal hash (0x...).
-
-
-
-
-
- Receive transactions in chat
-
-
-
-
-
- Others can send you funds via chat in one simple step.
-
-
-
-
-
- 10 SNT to register
-
-
-
-
-
- Register once to keep the name forever. After 1 year you can release the name and get your SNT back.
-
-
-
-
-
- Already own a username?
-
-
-
-
-
- You can verify and add any usernames you own in the next steps.
-
-
-
-
-
- Powered by Ethereum Name Services
-
-
-
-
-
- Start
-
-
-
-
-
- Only available on Mainnet
-
-
-
- EnterPassword
-
-
-
-
- Password
-
-
-
-
-
-
-
- Enter your password
-
-
-
-
-
-
-
-
-
- Password incorrect
-
-
-
-
-
-
-
- Password changed on other device
-
-
-
-
-
-
-
- Enter your new password to proceed
-
EnterSeedPhrase
-
-
-
-
- The phrase you’ve entered does not match this Keycard’s seed phrase
-
-
-
-
-
- Invalid seed phrase
-
-
-
-
-
- The phrase you’ve entered is invalid
-
-
-
-
-
- Enter key pair seed phrase
-
-
-
+
+
-
-
-
+
+ %n word
+ %n words
-
- EnterSeedPhraseWords
-
-
-
-
- Confirm seed phrase words
-
-
-
-
-
-
-
-
-
- Word #%1
-
-
-
-
-
-
-
-
-
- Enter word
-
-
-
-
-
-
-
-
-
- This word doesn’t match
-
-
-
- ExemptionNotificationsModal
-
-
-
-
- %1 exemption
-
-
-
-
-
- Mute all messages
-
-
-
-
-
- Personal @ Mentions
-
-
-
-
-
- Global @ Mentions
-
-
-
-
-
- Other Messages
-
-
-
-
-
- Clear Exemptions
-
-
-
-
-
- Done
-
-
-
- ExtendedDropdownContent
-
-
-
-
- Most viewed
-
-
-
-
-
- Newest first
-
-
-
-
-
- Oldest first
-
-
-
-
-
- List
-
-
-
-
-
- Thumbnails
-
-
-
-
-
- Mint token
-
-
-
-
-
- Import existing token
-
-
-
-
-
- Mint collectible
-
-
-
- FavoriteMenu
-
-
-
-
- Open in new Tab
-
-
-
-
-
- Edit
-
-
-
-
-
- Remove
-
-
-
- FetchMoreMessagesButton
-
-
-
-
- ↓ Fetch more messages
-
-
-
-
-
- Before %1
-
-
-
- before--%1
-
-
-
- FleetRadioSelector
-
-
-
-
- Warning!
-
-
-
-
-
- Change fleet to %1
-
-
-
- FleetsModal
-
-
-
-
- Fleet
-
-
-
- GapComponent
-
-
- fetch-messages
-
-
-
- between--1-and--2
-
-
-
-
-
- Fetch messages
-
-
-
-
-
- Between %1 and %2
-
-
-
- GasSelector
-
-
-
-
- Must be greater than 0
-
-
-
-
-
- This needs to be a number
-
-
-
-
-
- Please enter an amount
-
-
-
-
-
- Min 21000 units
-
-
-
-
-
- Not enough gas
-
-
-
-
-
- Miners will currently not process transactions with a tip below %1 Gwei, the average is %2 Gwei
-
-
-
-
-
- The average miner tip is %1 Gwei
-
-
-
-
-
- Priority
-
-
-
-
-
- Gas Price
-
-
-
-
-
- Current base fee: %1 %2
-
-
-
-
-
- Use suggestions
-
-
-
-
-
- Use custom
-
-
-
-
-
- Low
-
-
-
-
-
- Optimal
-
-
-
-
-
- High
-
-
-
-
-
- Gas amount limit
-
-
-
-
-
- Per-gas tip limit
-
-
-
-
-
-
-
- Gwei
-
-
-
-
-
- Per-gas overall limit
-
-
-
-
-
- Maximum priority fee: %1 ETH
-
-
-
-
-
- Maximum overall price for the transaction. If the block base fee exceeds this, it will be included in a following block with a lower base fee.
-
-
-
- GasSelectorButton
-
-
-
-
- Low
-
-
-
- GasValidator
-
-
-
-
- Not enough ETH for gas
-
-
-
- GroupChatPanel
-
-
- To:
-
-
-
- USER LIMIT REACHED
-
-
-
- Confirm
-
-
-
- GroupInfoPopup
-
-
- Add members
-
-
-
- %1/%2 members
-
-
-
- %1 members
-
-
-
- 1 member
-
-
-
- Search
-
-
-
- All your contacts are already in the group
-
-
-
- Pinned messages
-
-
-
- Admin
-
-
-
- Make Admin
-
-
-
- Remove From Group
-
-
-
- Add selected
-
-
-
- HistoryView
-
-
-
-
- Status Desktop is connected to a non-archival node. Transaction history may be incomplete.
-
-
-
-
-
- No transactions found
-
-
-
-
-
- Load More
-
-
-
- HoldingsDropdown
-
-
-
-
- Choose token
-
-
-
-
-
- Choose collectible
-
-
-
-
-
- Back
-
-
-
-
-
- Token
-
-
-
-
-
- Collectible
-
-
-
-
-
- ENS
-
-
-
- HoldingsTabs
-
-
-
-
- Add
-
-
-
-
-
- Update
-
-
-
-
-
- Remove
-
-
-
- HomePageView
-
-
-
-
- homepage
-
-
-
-
-
- System default
-
-
-
-
-
- Other
-
-
-
-
-
- Example: duckduckgo.com
-
-
-
- ImageCropWorkflow
-
-
-
-
- Supported image formats (%1)
-
-
-
- ImageCropperModal
-
-
- Crop your image (optional)
-
-
-
- Finish
-
-
-
- ImportCommunityPopup
-
-
-
-
- Import Community
-
-
-
-
-
- Entering a community key will grant you the ownership of that community. Please be responsible with it and don’t share the key with people you don’t trust.
-
-
-
-
-
- Community private key
-
-
-
-
-
- Import
-
-
-
- ImportPrivateKeyPanel
-
-
-
-
-
-
- You need to enter a private key
-
-
-
-
-
-
-
- Enter a valid private key (64 characters hexadecimal string)
-
-
-
-
-
- Private key
-
-
-
-
-
- Paste the contents of your private key
-
-
-
-
-
- Enter a valid private key
-
-
-
-
-
- Public address
-
-
-
-
-
- Account already added
-
-
-
-
-
- Pending
-
-
-
-
-
- Has Activity
-
-
-
-
-
- No Activity
-
-
ImportSeedPhrasePanel
-
-
-
-
-
-
- Invalid seed phrase
-
-
-
-
-
- This seed phrase doesn't match our supported dictionary. Check for misspelled words.
-
-
-
+
+
-
-
-
+
+ %n word
+ %n words
-
-
- %1 words
-
-
-
- InlineSelectorPanel
-
-
-
-
- Confirm
-
-
-
-
-
- Reject
-
-
-
- Input
-
-
-
-
- Copied
-
-
-
-
-
- Pasted
-
-
-
-
-
- Copy
-
-
-
-
-
- Paste
-
-
-
- InsertCard
-
-
- Please insert your Keycard to proceed or press the cancel button to cancel the operation
-
-
-
- Cancel
-
-
-
- InsertDetailsView
-
-
-
-
-
-
- Your profile
-
-
-
-
-
-
-
- Longer and unusual names are better as they are less likely to be used by someone else.
-
-
-
-
-
- Display name
-
-
-
-
-
- Chatkey:
-
-
-
-
-
- Next
-
-
-
-
-
- Choose an image for profile picture
-
-
-
-
-
- Profile picture
-
-
-
-
-
- Make this my profile picture
-
-
-
-
-
- Your emojihash and identicon ring
-
-
-
-
-
- This set of emojis and coloured ring around your avatar are unique and represent your chat key, so your friends can easily distinguish you from potential impersonators.
-
InvitationBubbleView
-
-
-
-
- Membership requires an ENS username
-
-
-
-
-
- You need to be invited
-
-
-
-
-
- Pending
-
-
-
-
-
- View
-
-
-
-
-
- Request Access
-
-
-
-
-
- Join
-
-
-
-
-
- Verified community invitation
-
-
-
-
-
- Community invitation
-
-
-
+
+
-
-
-
+
+ %n member
+ %n members
-
-
- %1 members
-
-
-
-
-
- Unsupported state
-
-
-
-
-
- Error joining the community
-
-
-
- InviteFriendsPopup
-
-
-
-
- Get Status at https://status.im
-
-
-
-
-
- Download Status link
-
-
-
-
-
- Copy to clipboard
-
-
-
- InviteFriendsToCommunityPopup
-
-
- Invite friends
-
-
-
-
-
- Invite successfully sent
-
-
-
-
-
- Invite Contacts to %1
-
-
-
-
-
- Next
-
-
-
-
-
- Send Invites
-
-
-
- Invite
-
IssuePill
-
-
+
+
-
-
-
+
+ %n warning
+ %n warnings
-
-
+
+
-
-
-
+
+ %n error
+ %n errors
-
- JSDialogWindow
-
-
-
-
- Ok
-
-
-
-
-
- Cancel
-
-
-
- KeyPairUnknownItem
-
-
-
-
- Active Accounts
-
-
-
- KeycardConfirmation
-
-
-
-
- A factory reset will delete the key on this Keycard.
-Are you sure you want to do this?
-
-
-
-
-
- I understand the key pair on this Keycard will be deleted
-
-
-
- KeycardCreatePINModal
-
-
-
-
-
-
- Create PIN
-
-
-
-
-
- New PIN
-
-
-
-
-
- Confirm PIN
-
-
-
-
-
- Create a 6 digit long PIN
-
-
-
- KeycardInit
-
-
- Temporary Popup
-
-
-
- Enter password...
-
-
-
- Next
-
-
-
-
-
- Plug in Keycard reader...
-
-
-
-
-
- Insert Keycard...
-
-
-
-
-
- Check the card, it might be wrongly inserted
-
-
-
-
-
- Keycard inserted...
-
-
-
-
-
- Reading Keycard...
-
-
-
-
-
- This is not a Keycard
-
-
-
-
-
- The card inserted is not a recognised Keycard,
-please remove and try and again
-
-
-
-
-
- Wrong Keycard inserted
-
-
-
-
-
- Keycard inserted does not match the Keycard below
-
-
-
-
-
- Keycard locked
-
-
-
-
-
- You will need to unlock it before proceeding
-
-
-
-
-
- Pin entered incorrectly too many times
-
-
-
-
-
- This Keycard has empty metadata
-
-
-
-
-
- Unlock this Keycard
-
-
-
-
-
- This Keycard already stores keys
-but doesn't store any metadata
-
-
-
-
-
- Keycard is empty
-
-
-
-
-
- There is no key pair on this Keycard
-
-
-
-
-
- This Keycard already stores keys
-
-
-
-
-
- To migrate %1 on to this Keycard, you
-will need to perform a factory reset first
-
-
-
-
-
- Keycard locked and already stores keys
-
-
-
-
-
- The Keycard you have inserted is locked,
-you will need to factory reset it before proceeding
-
-
-
-
-
- Puk entered incorrectly too many times
-
-
-
-
-
- Max pairing slots reached for the entered keycard
-
-
-
-
-
- Your Keycard is already unlocked!
-
-
-
-
-
- Unlock successful
-
-
-
-
-
- Keycard recognized
-
-
-
-
-
- Your Keycard has been reset
-
-
-
-
-
- Keycard successfully factory reset
-
-
-
-
-
- You can now create a new key pair on this Keycard
-
-
-
-
-
- You can now use this Keycard as if it
-was a brand new empty Keycard
-
-
-
-
-
- Migrating key pair to Keycard
-
-
-
-
-
- Key pair successfully migrated
-
-
-
-
-
- To complete migration close Status and log in with your new Keycard
-
-
-
-
-
- Key pair failed to migrated
-
-
-
-
-
- Accounts on this Keycard
-
-
-
-
-
- Ready to authenticate...
-
-
-
-
-
-
-
- Biometric scan failed
-
-
-
-
-
-
-
- Biometrics incorrect
-
-
-
-
-
- Biometric pin invalid
-
-
-
-
-
- The PIN length doesn't match Keycard's PIN length
-
-
-
- KeycardInitView
-
-
-
-
- Plug in Keycard reader...
-
-
-
-
-
- Insert your Keycard...
-
-
-
-
-
- Check the card, it might be wrongly inserted
-
-
-
-
-
- Reading Keycard...
-
-
KeycardPin
-
-
-
-
-
-
-
-
- It is very important that you do not lose this PIN
-
-
-
-
-
- PINs don't match
-
-
-
-
-
- Enter this Keycard’s PIN
-
-
-
-
-
- Enter Keycard PIN
-
-
-
-
-
-
-
- PIN incorrect
-
-
-
-
-
+
+
+
+
-
-
-
+
+ %n attempt remaining
+ %n attempts remaining
-
-
-
-
- Your saved PIN is out of date
-
-
-
-
-
- Enter your new PIN to proceed
-
-
-
-
-
- Choose a Keycard PIN
-
-
-
-
-
- Repeat Keycard PIN
-
-
-
-
-
- Keycard PIN set
-
-
-
-
-
- Keycard PIN verified!
-
KeycardPinView
-
-
- It is very important that you do not loose this PIN
-
-
-
-
-
-
-
-
-
- It is very important that you do not lose this PIN
-
-
-
-
-
- PINs don't match
-
-
-
-
-
- Create new Keycard PIN
-
-
-
-
-
- Repeat Keycard PIN
-
-
-
-
-
- Keycard PIN set
-
-
-
-
-
-
-
- Enter Keycard PIN
-
-
-
-
-
- PIN incorrect
-
-
-
+
+
-
-
-
+
+ %n attempt remaining
+ %n attempts remaining
-
- KeycardPopup
-
-
-
-
- Set up a new Keycard with an existing account
-
-
-
-
-
- Factory reset a Keycard
-
-
-
-
-
-
-
- Authenticate
-
-
-
-
-
- Check what’s on a Keycard
-
-
-
-
-
-
-
-
-
-
-
-
-
- Cancel
-
-
-
-
-
- Use biometrics instead
-
-
-
-
-
- Use password instead
-
-
-
-
-
- Use biometrics
-
-
-
-
-
- Use PIN
-
-
-
-
-
- Update PIN
-
-
-
-
-
- Unlock using PUK
-
-
-
-
-
- Input seed phrase
-
-
-
-
-
- Yes, migrate key pair to this Keycard
-
-
-
-
-
- Yes, migrate key pair to Keycard
-
-
-
-
-
-
-
- Try entering seed phrase again
-
-
-
-
-
- Check what is stored on this Keycard
-
-
-
-
-
-
-
-
-
- I don’t know the PIN
-
-
-
-
-
- Unlock using seed phrase
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Unlock Keycard
-
-
-
-
-
- Update password & authenticate
-
-
-
-
-
- Update PIN & authenticate
-
-
-
-
-
- Try biometrics again
-
-
-
- I don’t know the pin
-
-
-
-
-
-
-
- Factory reset this Keycard
-
-
-
-
-
-
-
-
-
-
-
-
-
- Next
-
-
-
- Tmp-Next
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Done
-
-
-
-
-
- Restart app & sign in using your new Keycard
-
-
KeycardPuk
-
-
-
-
- Enter PUK
-
-
-
-
- The PUK is incorrect, try entering it again
-
-
+
+
-
-
-
+
+ %n attempt remaining
+ %n attempts remaining
KeycardPukView
-
-
-
-
- Enter PUK code to recover Keycard
-
-
-
-
-
- Recover Keycard
-
-
-
+
+
-
-
-
+
+ Invalid PUK code, %n attempt remaining
+ Invalid PUK code, %n attempts remaining
-
- KeycardStateView
-
-
-
-
- This Keycard already stores keys
-
-
-
-
-
- To generate new keys, you will need to perform a factory reset first
-
-
-
-
-
-
-
-
-
-
-
- Factory reset
-
-
-
-
-
-
-
-
-
-
-
- Insert another Keycard
-
-
-
-
-
- The keycard is empty
-
-
-
-
-
- Generate new keys for this Keycard
-
-
-
-
-
- Keycard locked and already stores keys
-
-
-
-
-
- The Keycard you have inserted is locked, you will need to factory reset it before proceeding
-
-
-
-
-
-
-
-
-
- Keycard locked
-
-
-
-
-
- Max pairing slots reached for this keycard
-
-
-
-
-
- Max PUK retries reached for this keycard
-
-
-
-
-
-
-
- Recover your Keycard
-
-
-
-
-
- Recover with seed phrase
-
-
-
-
-
- Recover with PUK
-
-
-
- KeycardView
-
-
-
-
- Get Keycard
-
-
-
-
-
- Secure your funds. Keep your profile safe.
-
-
-
-
-
- Setup a new Keycard with an existing account
-
-
-
-
-
- Create, import or restore a Keycard account
-
-
-
-
-
- Generate a seed phrase
-
-
-
-
-
- Import or restore via a seed phrase
-
-
-
-
-
- Import from Keycard to Status Desktop
-
-
-
-
-
- Other
-
-
-
-
-
- Check what’s on a Keycard
-
-
-
-
-
- Factory reset a Keycard
-
-
-
- KeysMainView
-
-
-
-
- intro-wizard-title1
-
-
-
-
-
- a-set-of-keys-controls-your-account.-your-keys-live-on-your-device,-so-only-you-can-use-them.
-
-
-
-
-
- Connect your keys
-
-
-
-
-
- Use your existing Status keys to login to this device.
-
-
-
-
-
- Login with Keycard
-
-
-
-
-
- Enter a seed phrase
-
-
-
-
-
- Get your keys
-
-
-
-
-
- A set of keys controls your account. Your keys live on your
-device, so only you can use them.
-
-
-
-
-
- Generate new keys
-
-
-
-
-
- Generate keys for a new Keycard
-
-
-
-
-
-
-
-
-
- Import a seed phrase
-
-
-
-
-
- Seed phrases are used to back up and restore your keys. Only use this option if you already have a seed phrase.
-
-
-
-
-
- Import a seed phrase into a new Keycard
-
-
-
- LanguageStore
-
-
- Beta Languages
-
-
-
- LanguageView
-
-
-
-
- Set Display Currency
-
-
-
-
-
- Search Currencies
-
-
-
-
-
- Language
-
-
-
-
-
- Alpha languages
-
-
-
-
-
- Beta languages
-
-
-
-
-
- Search Languages
-
-
-
-
-
- Date Format
-
-
-
-
-
- DD/MM/YY
-
-
-
-
-
- MM/DD/YY
-
-
-
-
-
- Time Format
-
-
-
-
-
- 24-Hour Time
-
-
-
-
-
- 12-Hour Time
-
-
-
-
-
- Change language
-
-
-
-
-
- Display language has been changed. You must restart the application for changes to take effect.
-
-
-
-
-
- Close the app now
-
-
-
- Layout
-
-
-
-
- To:
-
-
-
-
-
- USER LIMIT REACHED
-
-
-
-
-
-
-
-
-
-
-
- Invite People
-
-
-
-
-
-
-
-
-
-
-
- View Community
-
-
-
-
-
-
-
-
-
-
-
- Edit Community
-
-
-
-
-
-
-
-
-
-
-
- Leave Community
-
-
-
- LeftTabView
-
-
-
-
- Settings
-
-
-
-
-
- Sign out
-
-
-
-
-
- Make sure you have your account password and seed phrase stored. Without them you can lock yourself out of your account and lose funds.
-
-
-
-
-
- Sign out & Quit
-
-
-
-
-
- Wallet
-
-
-
-
-
- Total value
-
-
-
-
-
- Add account
-
-
-
-
-
- Saved addresses
-
-
-
- LinksMessageView
-
-
-
-
- Enable automatic image unfurling
-
-
-
-
-
- Enable link previews in chat?
-
-
-
-
-
- Once enabled, links posted in the chat may share your metadata with their owners
-
-
-
-
-
- Enable in Settings
-
-
-
-
-
- Don't ask me again
-
-
LoginView
-
-
-
-
- Ok
-
-
-
-
-
- Enter Keycard PIN
-
-
-
-
-
- Welcome back
-
-
-
-
-
- Add new user
-
-
-
-
-
- Add existing Status user
-
-
-
-
-
- Connecting...
-
-
-
-
-
- Password
-
-
-
-
-
- Plug in Keycard reader...
-
-
-
-
-
- Insert your Keycard...
-
-
-
-
-
- Check the card, it might be wrongly inserted
-
-
-
-
-
- Reading Keycard...
-
-
-
-
-
- Wrong Keycard!
-The card inserted is not linked to your profile.
-
-
-
-
-
- Insert another Keycard
-
-
-
-
-
- PIN incorrect
-
-
-
+
+
-
-
-
+
+ %n attempt remaining
+ %n attempts remaining
-
-
-
-
-
-
- Keycard locked
-
-
-
-
-
- Recover your Keycard
-
-
-
-
-
- Recover with seed phrase
-
-
-
-
-
- The card inserted is empty
-
-
-
-
-
- Generate keys for a new Keycard
-
-
-
-
-
- This is not a Keycard
-
-
-
-
-
- The card inserted is not a recognised Keycard,
-please remove and try and again
-
-
-
- Enter password
-
-
-
-
-
- Login failed: %1
-
-
-
-
-
- Password incorrect
-
-
-
- MailserverConnectionDialog
-
-
-
-
- Can not connect to mailserver
-
-
-
-
-
- The mailserver you're connecting to is unavailable.
-
-
-
-
-
- Pick another
-
-
-
-
-
- Retry
-
MainView
-
-
-
-
- DApp Permissions
-
-
-
+
+
-
-
-
+
+ %n DApp connected
+ %n DApps connected
-
-
-
-
- Networks
-
-
-
-
-
- Accounts
-
-
-
-
-
- Generated from Your Seed Phrase
-
-
-
-
-
- Imported
-
-
-
-
-
- Watch-Only
-
-
-
- MembersSelectorBase
-
-
-
-
- To:
-
-
-
-
-
- %1 USER LIMIT REACHED
-
-
-
- MembershipRequestsPopup
-
-
-
-
- Membership requests
-
-
-
- MenuPanel
-
-
-
-
- Apps
-
-
-
-
-
- Settings
-
-
-
-
-
- About & Help
-
-
-
- MessageContextMenuView
-
-
-
-
- Copy image
-
-
-
-
-
- Download image
-
-
-
-
-
- Block User
-
-
-
-
-
- Unblock User
-
-
-
-
-
- Verify Identity
-
-
-
-
-
- ID Request Pending....
-
-
-
-
-
- Respond to ID Request...
-
-
-
-
-
- Rename
-
-
-
-
-
- Mark as Untrustworthy
-
-
-
-
-
- Remove Untrustworthy Mark
-
-
-
-
-
- Reply to
-
-
-
-
-
- Edit message
-
-
-
-
-
- Copy Message Id
-
-
-
-
-
- Unpin
-
-
-
-
-
- Pin
-
-
-
-
-
- Delete message
-
-
-
-
-
- Jump to
-
-
-
-
-
- Please choose a directory
-
-
-
-
-
- Confirm deleting this message
-
-
-
-
-
- Are you sure you want to delete this message? Be aware that other clients are not guaranteed to delete the message as well.
-
-
-
- MessageStore
-
-
- and
-
-
-
- %1 more
-
-
-
- reacted with
-
-
-
-
-
- You
-
-
-
- MessageView
-
-
-
-
- Audio Message
-
-
-
-
-
- Cancel
-
-
-
-
-
- Save
-
-
-
-
-
- Loading image...
-
-
-
-
-
- Error loading the image
-
-
-
-
-
- Resend
-
-
-
-
-
- Pinned by
-
-
-
-
-
- Pinned
-
-
-
-
-
- Imported from discord
-
-
-
-
-
- Add reaction
-
-
-
-
-
- Reply
-
-
-
-
-
- Edit
-
-
-
-
-
- Unpin
-
-
-
-
-
- Pin
-
-
-
-
-
- Delete
-
-
-
- MessagingView
-
-
-
-
- Allow new contact requests
-
-
-
-
-
- Show My Profile Picture To
-
-
-
-
-
-
-
- Everyone
-
-
-
-
-
-
-
- Contacts
-
-
-
-
-
-
-
- No One
-
-
-
-
-
- See Profile Pictures From
-
-
-
-
-
- Open Message Links With
-
-
-
-
-
- Status Browser
-
-
-
-
-
- System Default Browser
-
-
-
-
-
- Contacts, Requests, and Blocked Users
-
-
-
-
-
- Display Message Link Previews
-
-
-
-
-
- Fine tune which sites to allow link previews
-
-
-
-
-
- Image unfurling
-
-
-
-
-
- All images (links that contain an image extension) will be downloaded and displayed
-
-
-
-
-
- Message syncing
-
-
-
-
-
- Waku nodes
-
-
-
-
-
- For security reasons, private chat history won't be synced.
-
-
-
- ModuleWarning
-
-
-
-
- %1D {1%?}
-
-
-
- MuteChatMenuItem
-
-
-
-
- Mute chat
-
-
-
-
-
- Unmute chat
-
-
-
- MutedChatsModal
-
-
-
-
- Muted chats
-
-
-
-
-
- Unmute
-
-
-
- MyProfileSettingsView
-
-
- Display name
-
-
-
- Display Name
-
-
-
-
-
- Biometric login and transaction authentication
-
-
-
-
-
- Communities
-
-
-
-
-
- Accounts
-
-
-
-
-
- You haven't joined any communities yet
-
-
-
-
-
- You don't have any wallet accounts yet
-
-
-
- MyProfileView
-
-
-
-
- Change Password
-
-
-
-
-
- Edit
-
-
-
-
-
- Preview
-
-
-
- NetworkCardsComponent
-
-
-
-
- Your Balances
-
-
-
-
-
- No Balance
-
-
-
-
-
- No Gas
-
-
-
-
-
- BALANCE:
-
-
-
-
-
-
-
- Disabled
-
NetworkFilter
-
-
-
-
- All networks
-
-
-
+
+
%n network
@@ -10522,4934 +254,52 @@ please remove and try and again
-
- NetworkSelectPopup
-
-
-
-
- Layer 2
-
-
-
- NetworkSelector
-
-
- Networks
-
-
-
- Choose a network to use for the transaction
-
-
-
- No networks available
-
-
-
-
-
- Simple
-
-
-
-
-
- Advanced
-
-
-
-
-
- Custom
-
-
-
- NetworksAdvancedCustomRoutingView
-
-
-
-
- Networks
-
-
-
-
-
- Show Unpreferred Networks
-
-
-
-
-
- The networks where the receipient will receive tokens. Amounts calculated automatically for the lowest cost.
-
-
-
- NetworksSimpleRoutingView
-
-
-
-
- Networks
-
-
-
-
-
- Choose a network to use for the transaction
-
-
-
- NetworksView
-
-
-
-
- Layer 2
-
-
-
-
-
- Add Custom Network
-
-
-
- NicknamePopup
-
-
-
-
-
-
- Nickname
-
-
-
-
-
- Nicknames help you identify others in Status. Only you can see the nicknames you’ve added
-
-
-
-
-
- Done
-
-
-
- NoFriendsRectangle
-
-
-
-
- You don’t have any contacts yet. Invite your friends to start chatting.
-
-
-
-
-
- Invite friends
-
-
-
- NoImageUploadedPanel
-
-
-
-
- Upload
-
-
-
-
-
- Wide aspect ratio is optimal
-
-
-
- NodeLayout
-
-
-
-
- Bloom Filter Usage
-
-
-
-
-
- Type json-rpc message... e.g {"method": "eth_accounts"}
-
-
-
- NotificationSelect
-
-
-
-
- Send Alerts
-
-
-
-
-
- Deliver Quietly
-
-
-
-
-
- Turn Off
-
-
-
- NotificationWindow
-
-
-
-
- Everything is connected
-
-
-
- NotificationsView
-
-
-
-
- Community
-
-
-
-
-
- 1:1 Chat
-
-
-
-
-
- Group Chat
-
-
-
-
-
- Muted
-
-
-
-
-
-
-
- Off
-
-
-
-
-
-
-
-
-
- Quiet
-
-
-
-
-
- Personal @ Mentions %1
-
-
-
-
-
- Global @ Mentions %1
-
-
-
-
-
- Alerts
-
-
-
-
-
- Other Messages %1
-
-
-
-
-
- Multiple Exemptions
-
-
-
-
-
- Enable Notifications in macOS Settings
-
-
-
-
-
- To receive Status notifications, make sure you've enabled them in your computer's settings under <b>System Preferences > Notifications</b>
-
-
-
-
-
- Sync your devices to share notifications preferences
-
-
-
-
-
- Syncing >
-
-
-
-
-
- Allow Notifications
-
-
-
-
-
- Messages
-
-
-
-
-
- 1:1 Chats
-
-
-
-
-
- Group Chats
-
-
-
-
-
- Personal @ Mentions
-
-
-
-
-
- Messages containing @%1
-
-
-
-
-
- Global @ Mentions
-
-
-
-
-
- Messages containing @here and @channel
-
-
-
-
-
- All Messages
-
-
-
-
-
- Others
-
-
-
-
-
- Contact Requests
-
-
-
-
-
- Identity Verification Requests
-
-
-
-
-
- Notification Content
-
-
-
-
-
- Show Name and Message
-
-
-
-
-
- Hi there! So EIP-1559 will defini...
-
-
-
-
-
- Name Only
-
-
-
-
-
-
-
- You have a new message
-
-
-
-
-
- Anonymous
-
-
-
-
-
- Play a Sound When Receiving a Notification
-
-
-
-
-
- Volume
-
-
-
-
-
- Send a Test Notification
-
-
-
-
-
- Exemptions
-
-
-
-
-
- Search Communities, Group Chats and 1:1 Chats
-
-
-
-
-
- Most recent
-
-
-
- OnboardingLayout
-
-
-
-
-
-
- Keys for this account already exist
-
-
-
-
-
- Keys for this account already exist and can't be added again. If you've lost your password, passcode or Keycard, uninstall the app, reinstall and access your keys by entering your seed phrase
-
-
-
-
-
-
-
- Login failed
-
-
-
-
-
-
-
- Login failed. Please re-enter your password and try again.
-
-
-
-
-
- Keys for this account already exist and can't be added again. If you've lost your password, passcode or Keycard, uninstall the app, reinstall and access your keys by entering your seed phrase. In case of Keycard try recovering using PUK or reinstall the app and try login with the Keycard option.
-
-
-
-
-
- Error importing seed
-
-
-
- OperatorsSelector
-
-
-
-
- And...
-
-
-
-
-
- Or...
-
-
-
- PINModal
-
-
- Authenticate PIN
-
-
-
- PIN
-
-
-
- Insert your 6-digit PIN
-
-
-
- Authenticate
-
-
-
- PairingModal
-
-
- Insert pairing code
-
-
-
- Pairing code
-
-
-
- Insert the Keycard pairing code
-
-
-
- Pair
-
-
-
- PasswordView
-
-
-
-
- Create a password
-
-
-
-
-
- Create a password to unlock Status on this device & sign transactions.
-
-
-
-
-
- You will not be able to recover this password if it is lost.
-
-
-
-
-
- Minimum %1 characters. To strengthen your password consider including:
-
-
-
-
-
- Passwords don't match
-
-
-
-
-
- This password has been pwned and shouldn't be used
-
-
-
-
-
- This password is a common word and shouldn't be used
-
-
-
-
-
- Password must be at least %1 characters long
-
-
-
-
-
- Current password
-
-
-
-
-
- New password
-
-
-
-
-
- Very weak
-
-
-
-
-
- Weak
-
-
-
-
-
- So-so
-
-
-
-
-
- Good
-
-
-
-
-
- Great
-
-
-
-
-
- Lower case
-
-
-
-
-
- Upper case
-
-
-
-
-
- Numbers
-
-
-
-
-
- Symbols
-
-
-
-
-
- Confirm password
-
-
-
- PermissionsDropdown
-
-
-
-
- Community
-
-
-
-
-
- Members who meet the requirements will be allowed to create and edit permissions, token sales, airdrops and subscriptions
-
-
-
-
-
- Be careful with assigning this permission.
-
-
-
-
-
- Only the community owner can modify admin permissions
-
-
-
-
-
- Become admin
-
-
-
-
-
- Anyone who meets the requirements will be allowed to join your community
-
-
-
-
-
- Become member
-
-
-
-
-
- Channels
-
-
-
-
-
- Members who meet the requirements will be allowed to read, write, ban members and pin messages in the selected channels
-
-
-
-
-
- Moderate
-
-
-
-
-
- Members who meet the requirements will be allowed to read and write in the selected channels
-
-
-
-
-
- View and post
-
-
-
-
-
- Members who meet the requirements will be allowed to read the selected channels
-
-
-
-
-
- Read
-
-
-
-
-
- Add
-
-
-
-
-
- Update
-
-
-
- PermissionsListView
-
-
-
-
- Disconnect All
-
-
-
-
-
- Disconnect
-
-
PinnedMessagesPopup
-
-
-
-
- Pin limit reached
-
-
-
-
-
- Pinned messages
-
-
-
-
-
- Unpin a previous message first
-
-
-
+
+
-
-
-
+
+ %n message
+ %n messages
-
-
-
-
- Unpin selected message and pin new message
-
-
-
- %1 messages
-
-
-
- %1 message
-
-
-
-
-
- Pinned messages will appear here.
-
-
-
- Unpin
-
-
-
- PrivateChatPopup
-
-
-
-
- New chat
-
-
-
-
-
- My Profile
-
-
-
- ProfileDescriptionPanel
-
-
-
-
- Display name
-
-
-
-
-
- Display Name
-
-
-
-
-
- Bio
-
-
-
-
-
- Tell us about yourself
-
-
-
-
-
- Add more social links
-
-
-
- ProfileHeader
-
-
-
-
- Chatkey:%1...
-
-
-
-
-
- Upload a file
-
-
-
-
-
- Remove image
-
-
-
- ProfileLayout
-
-
- Testnet mode is enabled. All balances, transactions and dApp interactions will be on testnets.
-
-
-
-
-
- Contacts
-
-
-
- Secure your seed phrase
-
-
-
- Back up now
-
-
-
- ProfilePopup
-
-
- 's Profile
-
-
-
- Send Contact Request to
-
-
-
-
-
- Verify %1's Identity
-
-
-
-
-
- My Profile
-
-
-
-
-
- %1's Profile
-
-
-
- Send Contact Request to %1
-
-
-
-
-
- Cancel verification
-
-
-
-
-
- Unblock User
-
-
-
-
-
- Block User
-
-
-
-
-
- Remove Contact
-
-
-
-
-
- Send Contact Request
-
-
-
-
-
- Mark Untrustworthy
-
-
-
-
-
- Remove 'Identity Verified' status
-
-
-
-
-
- No
-
-
-
-
-
- Yes
-
-
-
-
-
- Remove Untrustworthy Mark
-
-
-
-
-
- Verify Identity
-
-
-
-
-
- Verify Identity pending...
-
-
-
-
-
- Send verification request
-
-
-
-
-
- Verification request sent
-
-
-
-
-
- Confirm Identity
-
-
-
-
-
- Rename
-
-
-
-
-
- Close
-
-
-
- ProfileSectionStore
-
-
-
-
- Back up seed phrase
-
-
-
-
-
- Profile
-
-
-
-
-
- Keycard
-
-
-
-
-
- ENS usernames
-
-
-
-
-
- Messaging
-
-
-
-
-
- Wallet
-
-
-
-
-
- Browser
-
-
-
-
-
- Communities
-
-
-
-
-
- Appearance
-
-
-
-
-
- Notifications & Sounds
-
-
-
-
-
- Language & Currency
-
-
-
-
-
- Devices settings
-
-
-
-
-
- Advanced
-
-
-
-
-
- About
-
-
-
-
-
- Sign out & Quit
-
-
-
- ProfileView
-
-
-
-
- Blocked
-
-
-
-
-
- Send Request
-
-
-
-
-
- Receive Response
-
-
-
-
-
- Confirm Identity
-
-
-
-
-
- You have confirmed %1's identity. From now on this verification emblem will always be displayed alongside %1's nickname.
-
-
-
-
-
- You have marked %1 as Untrustworthy. From now on this Untrustworthy emblem will always be displayed alongside %1's nickname.
-
-
-
-
-
- ENS username
-
-
-
-
-
- Username
-
-
-
-
-
- Ask a question that only the real %1 will be able to answer e.g. a question about a shared experience, or ask %1 to enter a code or phrase you have sent to them via a different communication channel (phone, post, etc...).
-
-
-
- Ask a question that only the real %1 will be able to answer e.g. a question about a shared experience, or ask Mark to enter a code or phrase you have sent to them via a different communication channel (phone, post, etc...).
-
-
-
-
-
- Waiting for %1's response...
-
-
-
-
-
-
-
-
-
- Copied to clipboard
-
-
-
-
-
- Chat key
-
-
-
-
-
- Share Profile URL
-
-
-
- Chat settings
-
-
-
- Nickname
-
-
-
- None
-
-
-
-
-
- Remove contact
-
-
-
-
-
- Are you sure you want to remove this contact?
-
-
-
- PublicChatPopup
-
-
-
-
- You need to enter a channel name
-
-
-
-
-
- The channel name can only contain lowercase letters, numbers and dashes
-
-
-
-
-
- Join public chat
-
-
-
-
-
- A public chat is where you get to hang out with others, make friends and talk about subjects of your interest.
-
-
-
-
-
- chat-name
-
-
-
-
-
- Start chat
-
-
-
- RateView
-
-
-
-
- Bandwidth
-
-
-
-
-
- Upload
-
-
-
-
-
-
-
- Kb/s
-
-
-
-
-
- Download
-
-
-
- ReceiveModal
-
-
-
-
- Receive
-
-
-
-
-
- Legacy
-
-
-
-
-
- Multichain
-
-
-
-
-
- Your Address
-
-
-
-
-
- Copy
-
-
-
- RecipientSelector
-
-
-
-
- Invalid ethereum address
-
-
-
-
-
- Address
-
-
-
-
-
- My account
-
-
-
-
-
- Contact
-
-
-
-
-
- Recipient
-
-
-
- RenameAccontModal
-
-
-
-
- Rename %1
-
-
-
-
-
- Enter an account name...
-
-
-
-
-
- You need to enter an account name
-
-
-
-
-
- This is not a valid account name
-
-
-
-
-
- color
-
-
-
-
-
- Change Name
-
-
-
-
-
- Changing settings failed
-
-
-
- RenameGroupPopup
-
-
- Group name
-
-
-
- Save
-
-
-
-
-
-
-
- Edit group name and image
-
-
-
-
-
- Name the group
-
-
-
-
-
- Group image
-
-
-
-
-
- Choose an image as logo
-
-
-
-
-
- Use as an icon for this group chat
-
-
-
-
-
- Standard colours
-
-
-
-
-
- Save changes
-
-
-
- Retry
-
-
- Resend
-
-
-
- RightTabView
-
-
-
-
-
-
- Assets
-
-
-
-
-
- Collectibles
-
-
-
-
-
- Activity
-
-
-
- History
-
-
-
- RootStore
-
-
-
-
- You
-
-
-
-
-
- Start a 1-on-1 chat with %1
-
-
-
-
-
- Join the %1 community
-
-
-
-
-
- Join the %1 group chat
-
-
-
- SavedAddressesDelegate
-
-
-
-
- Edit
-
-
-
-
-
-
-
- Delete
-
-
-
-
-
- Are you sure?
-
-
-
-
-
- Are you sure you want to remove '%1' from your saved addresses?
-
-
-
-
-
- Cancel
-
-
-
- SavedAddressesView
-
-
-
-
- Saved addresses
-
-
-
-
-
- Add new address
-
-
-
- Edit
-
-
-
- Are you sure you want to remove '%1' from your saved addresses?
-
-
-
- Are you sure?
-
-
-
- Cancel
-
-
-
- Delete
-
-
-
-
-
- No saved addresses
-
-
-
- SearchBox
-
-
-
-
- Search
-
-
-
- SearchEngineModal
-
-
-
-
- Search engine
-
-
-
-
-
- None
-
-
-
- SearchResults
-
-
-
-
- Non contacts
-
-
-
-
-
- No profile found
-
-
-
- SeedPhrase
-
-
-
-
- Reveal seed phrase
-
-
-
-
-
- Write down your seed phrase
-
-
-
-
-
- The next screen contains your seed phrase.<br/><b>Anyone</b> who sees it can use it to access to your funds.
-
-
-
- SeedPhraseBackupWarning
-
-
-
-
- Back up your seed phrase
-
-
-
-
-
- Back up
-
SeedPhraseInputView
-
-
- Keys for this account already exist
-
-
-
- Keys for this account already exist and can't be added again. If you've lost your password, passcode or Keycard, uninstall the app, reinstall and access your keys by entering your seed phrase
-
-
-
- Error importing seed
-
-
-
-
-
- Enter seed phrase
-
-
-
- %1 words
-
-
-
+
+
-
-
-
+
+ %n word
+ %n words
-
-
-
-
- Recover Keycard
-
-
-
-
-
- Next
-
-
-
- %1SeedButton
-
-
-
-
-
- Invalid seed
-
-
-
-
-
- Restore Status Profile
-
-
-
-
-
- Import
-
-
-
- SeedPhraseTextArea
-
-
- Invalid seed phrase
-
-
-
- This seed phrase doesn't match our supported dictionary. Check for misspelled words.
-
-
-
- Start with the first word
-
-
-
- SeedPhraseView
-
-
-
-
- Write down your seed phrase
-
-
-
-
-
- You will need this to recover your Keycard if you loose
-your PIN of if the wrong PIN is entered five times in a row.
-
-
-
-
-
- Next
-
-
-
- SeedPhraseWordsInputView
-
-
-
-
- Enter seed phrase words
-
-
-
-
-
- Invalid word
-
-
-
-
-
- Next
-
-
-
- SelectAccountModal
-
-
-
-
- Select account
-
-
-
-
-
- Select account to share and receive assets
-
-
-
-
-
- Confirm and share address
-
-
-
- SelectAnotherAccountModal
-
-
-
-
- Your keys
-
-
-
-
-
- Add another existing key
-
-
-
- SelectGeneratedAccount
-
-
-
-
- Import new Seed Phrase
-
-
-
-
-
- Generate from Private key
-
-
-
-
-
- Add a watch-only address
-
-
-
-
-
- Imported
-
-
-
-
-
- Add new
-
-
-
-
-
- Origin
-
-
-
- SelectKeyPair
-
-
-
-
- Select a key pair
-
-
-
-
-
- Select which key pair you’d like to move to this Keycard
-
-
-
-
-
- Profile key pair
-
-
-
-
-
- Other key pairs
-
-
-
- SendContactRequestMenuItem
-
-
-
-
- Send Contact Request
-
-
-
- SendContactRequestModal
-
-
-
-
- Send Contact Request to chat key
-
-
-
-
-
- Paste
-
-
-
-
-
- Enter chat key here
-
-
-
-
-
-
-
- Say who you are / why you want to become a contact...
-
-
-
-
-
-
-
- who are you
-
-
-
-
-
-
-
- Send Contact Request
-
-
-
-
-
- Send Contact Request to %1
-
-
-
- SendMessageMenuItem
-
-
-
-
- Send message
-
-
-
- SendModal
-
-
-
-
- Error sending the transaction
-
-
-
-
-
- Send
-
-
-
- Max:
-
-
-
-
-
- No balances active
-
-
-
- Please enter a valid amount
-
-
-
-
-
- Max: %1
-
-
-
-
-
- To
-
-
-
-
-
- Enter an ENS name or address
-
-
-
-
-
- Paste
-
-
-
-
-
- Fees
-
-
-
- Error estimating gas: %1
-
-
-
- Wrong password
-
-
-
-
-
- Transaction pending...
-
-
-
-
-
- View on etherscan
-
-
-
- SendModalFooter
-
-
-
-
- Estimated Time:
-
-
-
-
-
- Max Fees:
-
-
-
-
-
- Send
-
-
-
- SendToContractWarning
-
-
-
-
- Tokens will be sent directly to a contract address, which may result in a loss of funds. To transfer ERC-20 tokens, ensure the recipient address is the address of the destination wallet.
-
-
-
- SendTransactionButton
-
-
-
-
- Sign and send
-
-
-
- SettingsDirtyToastMessage
-
-
-
-
- Changes detected
-
-
-
-
-
- Cancel
-
-
-
-
-
- Save changes
-
-
-
- SignMessageModal
-
-
-
-
- Signature request
-
-
-
-
-
- From
-
-
-
-
-
- Data
-
-
-
-
-
- Message
-
-
-
-
-
- Reject
-
-
-
-
-
- Sign
-
-
-
-
-
- Sign with password
-
-
-
- SignPhraseModal
-
-
-
-
- Signing phrase
-
-
-
-
-
- This is your signing phrase
-
-
-
-
-
- You should see these 3 words before signing each transaction
-
-
-
-
-
- If you see a different combination, cancel the transaction and sign out
-
-
-
-
-
- Ok, got it
-
-
-
-
-
- Remind me later
-
-
-
- SignTransactionModal
-
-
-
-
-
-
- Send
-
-
-
-
-
- Error sending the transaction
-
-
-
-
-
-
-
- Continue
-
-
-
-
-
- Choose account
-
-
-
-
-
- Network fee
-
-
-
-
-
- Error estimating gas: %1
-
-
-
-
-
- Transaction preview
-
-
-
-
-
-
-
- Sign with password
-
-
-
-
-
- Send %1 %2
-
-
-
-
-
- Next
-
-
-
-
-
- Wrong password
-
-
-
-
-
- Transaction pending...
-
-
-
-
-
- View on etherscan
-
-
-
- SocialLinksModal
-
-
-
-
- Social Links
-
-
-
-
-
- Custom links
-
-
-
-
-
- Add another custom link
-
-
-
- StateBubble
-
-
-
-
- Pending
-
-
-
-
-
- Confirmed
-
-
-
-
-
- Unknown token
-
-
-
-
-
- Address requested
-
-
-
-
-
- Waiting to accept
-
-
-
-
-
- Address shared
-
-
-
-
-
- Address received
-
-
-
-
-
- Transaction declined
-
-
-
-
-
- failure
-
-
-
-
-
- Unknown state
-
-
-
- StaticSocialLinkInput
-
-
-
-
- Twitter Handle
-
-
-
-
-
- Personal Site
-
-
-
-
-
- Github
-
-
-
-
-
- YouTube Channel
-
-
-
-
-
- Discord Handle
-
-
-
-
-
- Telegram Handle
-
-
-
- StatusActivityCenterButton
-
-
-
-
- Activity
-
-
-
- StatusAddressOrEnsValidator
-
-
-
-
- Please enter a valid address or ENS name.
-
-
-
- StatusAddressPage
-
-
-
-
- Copy Action:
-
-
-
- StatusAddressValidator
-
-
-
-
- Please enter a valid address.
-
-
-
- StatusAppChatView
-
-
-
-
- More
-
-
-
-
-
- Join public chats
-
-
-
-
-
- Start chat
-
-
-
- StatusAppCommunitiesPortalView
-
-
-
-
- Find community
-
-
-
-
-
- Featured
-
-
-
-
-
- Popular
-
-
-
- StatusAppCommunityView
-
-
-
-
- Search
-
-
-
-
-
-
-
- Members
-
-
-
-
-
- Community content here
-
-
-
- StatusAssetSelector
-
-
-
-
- Search for token or enter token address
-
-
-
- StatusAsyncEnsValidator
-
-
-
-
- ENS name could not be resolved in to an address
-
-
-
- StatusAsyncValidator
-
-
-
-
- invalid input
-
-
-
- StatusBadge
-
-
-
-
- 99+
-
-
-
- StatusChatImageExtensionValidator
-
-
-
-
- Format not supported.
-
-
-
-
-
- Upload %1 only
-
-
-
- StatusChatImageLoader
-
-
-
-
- Error loading the image
-
-
-
-
-
- Loading image...
-
StatusChatImageQtyValidator
-
-
-
-
- You can only upload %1 images at a time
-
-
-
- StatusChatImageSizeValidator
-
-
-
-
- Max image size is %1 MB
-
-
-
- StatusChatInfoButton
-
-
-
-
- Unmute
-
-
-
-
-
-
-
+
+
+
+
+ You can only upload %n image at a time
+ You can only upload %n images at a time
- StatusChatInput
-
-
-
-
- Message
-
-
-
-
-
- Please choose an image
-
-
-
-
-
- Image files (%1)
-
-
-
-
-
- Your message is too long.
-
-
-
-
-
- Please make your message shorter. We have set the limit to 2000 characters to be courteous of others.
-
-
-
-
-
- Bold
-
-
-
-
-
- Italic
-
-
-
-
-
- Strikethrough
-
-
-
-
-
- Code
-
-
-
-
-
- Quote
-
-
-
- Send
-
-
-
-
-
- Unblock
-
-
-
- StatusChatListAndCategories
-
-
-
-
- Add channel inside category
-
-
-
-
-
- More
-
-
-
- StatusChatListCategoryItem
-
-
-
-
- Add channel inside category
-
-
-
-
-
- More
-
-
-
- StatusChatListItem
-
-
-
-
- Unmute
-
-
-
- StatusChatToolBar
-
-
- Search
-
-
-
- Members
-
-
-
- More
-
-
-
- StatusColorDialog
-
-
-
-
- This is not a valid color
-
-
-
-
-
- Preview
-
-
-
-
-
- Standart colours
-
-
-
-
-
- Select Colour
-
-
-
- StatusColorSelector
-
-
-
-
- Color
-
-
-
- StatusColorSpacePage
-
-
-
-
- Thickness
-
-
-
-
-
- Min saturate:
-
-
-
-
-
- Max saturate:
-
-
-
-
-
- Min value:
-
-
-
-
-
- Max value:
-
-
-
-
-
- Color
-
-
-
- StatusCommunityTagsPage
-
-
-
-
- Select tags that will fit your Community
-
-
-
-
-
- Search tags
-
-
-
-
-
- Selected tags
-
-
-
- StatusDateGroupLabel
-
-
-
-
- Today
-
-
-
-
-
- Yesterday
-
-
-
- StatusDatePicker
-
-
-
-
- Previous year
-
-
-
-
-
- Previous month
-
-
-
-
-
- Show current month
-
-
-
-
-
- Next month
-
-
-
-
-
- Next year
-
-
-
- StatusDialog
-
-
-
-
- Close
-
-
-
-
-
- Abort
-
-
-
-
-
- Cancel
-
-
-
-
-
- No to all
-
-
-
-
-
- No
-
-
-
-
-
- Open
-
-
-
-
-
- Save
-
-
-
-
-
- Save all
-
-
-
-
-
- Retry
-
-
-
-
-
- Ignore
-
-
-
-
-
- Ok
-
-
-
-
-
- Yes to all
-
-
-
-
-
- Yes
-
-
-
-
-
- Apply
-
-
-
- StatusETHTransactionModal
-
-
-
-
- Contract interaction
-
-
-
-
-
- Wrong password
-
-
-
-
-
- Error sending the transaction
-
-
-
-
-
- Continue
-
-
-
-
-
- Choose account
-
-
-
-
-
-
-
- Sign with password
-
-
-
-
-
- Next
-
-
-
- StatusEmojiSection
-
-
-
-
- No recent emojis
-
-
-
- StatusExpandableSettingsItemPage
-
-
-
-
- Back up seed phrase
-
-
-
-
-
- Not Implemented
-
-
-
- StatusFloatValidator
-
-
-
-
- Please enter a valid numeric value.
-
-
-
- StatusGifColumn
-
-
-
-
- Remove from favorites
-
-
-
-
-
- Add to favorites
-
-
-
- StatusGifPopup
-
-
- Search Tenor
-
-
-
-
-
- Search
-
-
-
-
-
- TRENDING
-
-
-
-
-
- FAVORITES
-
-
-
-
-
- RECENT
-
-
-
- Enable Tenor GIFs?
-
-
-
- Once enabled, GIFs posted in the chat may share your metadata with Tenor.
-
-
-
- Enable
-
-
-
- Favorite GIFs will appear here
-
-
-
- Recent GIFs will appear here
-
-
-
- Error while contacting Tenor API, please retry.
-
-
-
- Retry
-
-
-
- StatusImageCropPanelPage
-
-
-
-
- Cycle image
-
-
-
-
-
- Cycle spacing
-
-
-
-
-
- Cycle frame margins
-
-
-
-
-
- Load external image
-
-
-
-
-
- Test Title
-
-
-
-
-
- Supported image formats (%1)
-
-
-
- StatusIntValidator
-
-
-
-
- Please enter a valid numeric value.
-
-
-
- StatusItemSelector
-
-
-
-
- and
-
-
-
-
-
- or
-
-
-
- StatusListPicker
-
-
-
-
- Search
-
-
-
- StatusListPickerPage
-
-
-
-
-
-
- Search Languages
-
-
-
-
-
-
-
- Search Currencies
-
-
-
- StatusMacNotification
-
-
-
-
- My latest message
- with a return
-
-
-
-
-
- Open
-
-
-
- StatusMessage
-
-
-
-
- (edited)
-
-
-
- StatusMessageEmojiReactions
-
-
-
-
- and
-
-
-
-
-
- %1 more
-
-
-
-
-
- %1 reacted with %2
-
-
-
-
-
- Add reaction
-
-
-
- StatusMessageHeader
-
-
-
-
- You
-
-
-
- StatusMessageReply
-
-
-
-
- You
-
-
-
- StatusNotification
-
-
-
-
- Open
-
-
-
- StatusPasswordStrengthIndicator
-
-
-
-
- Very weak
-
-
-
-
-
- Weak
-
-
-
-
-
- So-so
-
-
-
-
-
- Good
-
-
-
-
-
- Great
-
-
-
- StatusSNTTransactionModal
-
-
-
-
-
-
-
-
- Authorize %1 %2
-
-
-
-
-
- Error sending the transaction
-
-
-
-
-
- Wrong password
-
-
-
-
-
- Continue
-
-
-
-
-
- Choose account
-
-
-
-
-
-
-
- Sign with password
-
-
-
-
-
- Send %1 %2
-
-
-
-
-
- Next
-
-
-
- StatusSearchListPopup
-
-
-
-
- Search...
-
-
-
- StatusSearchLocationMenu
-
-
-
-
- Anywhere
-
-
-
- StatusSearchPopup
-
-
-
-
- No results
-
-
-
-
-
- Anywhere
-
-
-
-
-
- Search
-
-
-
-
-
- In:
-
-
-
- In
-
-
-
- StatusSpellcheckingMenuItems
-
-
-
-
- Add to dictionary
-
-
-
-
-
- Disable Spellchecking
-
-
-
- StatusStackModal
-
-
-
-
- StackModal
-
-
-
-
-
- Next
-
-
-
-
-
- Finish
-
-
-
- StatusStickerButton
-
-
-
-
- Buy for %1 SNT
-
-
-
-
-
- Uninstall
-
-
-
-
-
- Install
-
-
-
-
-
- Free
-
-
-
-
-
- Pending...
-
-
-
-
-
- Cancel
-
-
-
-
-
- Update
-
-
-
- StatusStickerMarket
-
-
-
-
- This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk.
-
-
-
-
-
- I understand
-
-
-
- StatusStickersPopup
-
-
-
-
- You don't have any stickers yet
-
-
-
-
-
- Recently used stickers will appear here
-
-
-
-
-
- Get Stickers
-
-
-
- StatusTagSelectorPage
-
-
-
-
- To:
-
-
-
-
-
- USER LIMIT REACHED
-
-
-
- StatusTokenInlineSelector
-
-
-
-
- Hold
-
-
-
-
-
- or
-
-
-
-
-
- to post
-
-
-
- StatusUrlValidator
-
-
-
-
- Please enter a valid URL
-
-
-
- StatusValidator
-
-
-
-
- invalid input
-
-
-
- StatusWalletColorSelect
-
-
-
-
- Account color
-
-
-
- StatusWindowsTitleBar
-
-
-
-
- Status
-
-
-
- SubheaderTabBar
-
-
-
-
- Step %1 of %2
-
-
-
- TabAddressSelectorView
-
-
-
-
- Saved
-
-
-
-
-
- My Accounts
-
-
-
-
-
- Recent
-
-
-
-
-
- Search for saved address
-
-
-
-
-
- No Saved Address
-
-
-
-
-
- No Recents
-
-
-
- ToastMessage
-
-
-
-
- View on Etherscan
-
-
-
-
-
-
-
- Transaction pending...
-
-
-
- TokenSettingsModal
-
-
-
-
- Manage Assets
-
-
-
-
-
- Add custom token
-
-
-
- TokenSettingsModalContent
-
-
-
-
- Token details
-
-
-
-
-
- Remove token
-
-
-
-
-
- Custom
-
-
-
-
-
- Default
-
-
-
- TokensPanel
-
-
- Amount
-
-
-
- TouchIDAuthView
-
-
-
-
- Biometrics
-
-
-
-
-
- Would you like to use TouchID instead of a PIN code
-to login to Status using your Keycard?
-
-
-
-
-
- Would you like to use Touch ID
-to login to Status?
-
-
-
-
-
- Yes, use Touch ID
-
-
-
-
-
- I prefer to use my PIN
-
-
-
-
-
- I prefer to use my password
-
-
-
- TransactionBubbleView
-
-
-
-
- Transaction request
-
-
-
-
-
- ↑ Outgoing transaction
-
-
-
-
-
- ↓ Incoming transaction
-
-
-
-
-
- Token not found on your current network
-
-
-
- TransactionDelegate
-
-
- From
-
-
-
- To
-
-
-
- At
-
-
-
-
-
- Receive %1
-
-
-
-
-
-
-
- Send %1 to %2
-
-
-
- TransactionDetailView
-
-
-
-
- Activity
-
-
-
-
-
-
-
- Received %1 %2 from %3
-
-
-
-
-
-
-
- Sent %1 %2 to %3
-
-
-
-
-
- Transaction summary
-
-
-
-
-
- Fees
-
-
-
-
-
- Data
-
-
-
-
-
- Time
-
-
-
-
-
- %1 <font color="#939BA1">on</font> %2
-
-
-
-
-
- Confirmations
-
-
-
-
-
- Nonce
-
-
-
-
-
- Base fee
-
-
-
-
-
- %1 Gwei
-
-
-
-
-
- Tip
-
-
-
-
-
-
-
- %1 Gwei <font color="#939BA1">• Max: %2 Gwei</font>
-
-
-
-
-
- Total fee
-
-
-
- TransactionModal
-
-
-
-
- Transaction Details
-
-
-
-
-
- confirmation(s)
-
-
-
-
-
- When the transaction has 12 confirmations you can consider it settled.
-
-
-
-
-
- Block
-
-
-
-
-
- Hash
-
-
-
-
-
- From
-
-
-
-
-
- To
-
-
-
-
-
- Gas limit
-
-
-
-
-
- Gas price
-
-
-
-
-
- Gas used
-
-
-
-
-
- Nonce
-
-
-
- TransactionPreview
-
-
-
-
- From
-
-
-
-
-
- Recipient
-
-
-
-
-
- Unknown
-
-
-
-
-
- Asset
-
-
-
-
-
- Amount
-
-
-
-
-
- Network fee
-
-
-
-
-
- Data
-
-
-
-
-
- Data field
-
-
-
- TransactionSettingsConfirmationPopup
-
-
-
-
- Are you sure?
-
-
-
-
-
- Your priority fee is below our suggested parameters.
-
-
-
-
-
- Current base fee
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- %1 Gwei
-
-
-
-
-
- Current minimum tip
-
-
-
-
-
- Current average tip
-
-
-
-
-
- Your tip limit
-
-
-
-
-
- Suggested minimum tip
-
-
-
-
-
- Your price limit
-
-
-
-
-
- Suggested minimum price limit
-
-
-
-
-
- Change Limit
-
-
-
-
-
- Continue anyway
-
-
-
- TransactionSigner
-
-
-
-
- You need to enter a password
-
-
-
-
-
- Password needs to be 6 characters or more
-
-
-
-
-
- Signing phrase
-
-
-
-
-
- Signing phrase is a 3 word combination that displayed when you entered the wallet on this device for the first time.
-
-
-
-
-
- Enter the password you use to unlock this device
-
-
-
-
-
- Password
-
-
-
-
-
- Enter password
-
-
-
- TransferOwnershipPopup
-
-
-
-
- Transfer ownership
-
-
-
-
-
- Community private key
-
-
-
-
-
- Copy
-
-
-
-
-
- Copied
-
-
-
-
-
- You should keep it safe and only share it with people you trust to take ownership of your community
-
-
-
-
-
- You can also use this key to import your community on another device
-
-
-
- UnblockContactConfirmationDialog
-
-
-
-
-
-
- Unblock User
-
-
-
-
-
- Unblocking will allow new messages you received from %1 to reach you.
-
-
-
- UploadProfilePicModal
-
-
- Upload profile picture
-
-
-
- Choose an image for profile picture
-
-
-
- Profile picture
-
-
-
- Make this my profile picture
-
-
-
- Remove
-
-
-
- Upload
-
-
-
- Done
-
-
-
- UserListPanel
-
-
- Offline
-
-
-
-
-
- Online
-
-
-
-
-
- Inactive
-
-
-
- Do not disturb
-
-
-
- Idle
-
-
-
- UserStatusContextMenu
-
-
-
-
- View My Profile
-
-
-
-
-
- Always online
-
-
-
-
-
- Inactive
-
-
-
-
-
- Set status automatically
-
-
-
- Online
-
-
-
- Offline
-
-
-
- UsernameLabel
-
-
-
-
- You
-
-
-
- Utils
-
-
-
-
- Sun
-
-
-
-
-
- Mon
-
-
-
-
-
- Tue
-
-
-
-
-
- Wed
-
-
-
-
-
- Thu
-
-
-
-
-
- Fri
-
-
-
-
-
- Sat
-
-
-
-
-
- Jan
-
-
-
-
-
- Feb
-
-
-
-
-
- Mar
-
-
-
-
-
- Apr
-
-
-
-
-
- May
-
-
-
-
-
- Jun
-
-
-
-
-
- Jul
-
-
-
-
-
- Aug
-
-
-
-
-
- Sep
-
-
-
-
-
- Oct
-
-
-
-
-
- Nov
-
-
-
-
-
- Dec
-
-
-
-
-
- Yesterday
-
-
-
-
-
- Sunday
-
-
-
-
-
- Monday
-
-
-
-
-
- Tuesday
-
-
-
-
-
- Wednesday
-
-
-
-
-
- Thursday
-
-
-
-
-
- Friday
-
-
-
-
-
- Saturday
-
-
-
-
-
- NOW
-
-
-
-
-
- %1M
-
-
-
-
-
- %1H
-
-
-
-
-
- %1D
-
-
-
-
-
- words
-
-
-
-
-
- You need to enter a password
-
-
-
-
-
- Password needs to be 6 characters or more
-
-
-
-
-
- You need to repeat your password
-
-
-
-
-
- Passwords don't match
-
-
-
-
-
- You need to enter a PIN
-
-
-
-
-
- The PIN must contain only digits
-
-
-
-
-
- The PIN must be exactly %1 digits
-
-
-
- The PIN must be exactly 6 digits
-
-
-
-
-
- You need to repeat your PIN
-
-
-
-
-
- PIN don't match
-
-
-
-
-
-
-
- You need to enter a %1
-
-
-
-
-
- The %1 cannot exceed %2 characters
-
-
-
-
-
- Must be an hexadecimal color (eg: #4360DF)
-
-
-
-
-
- Use only lowercase letters (a to z), numbers & dashes (-). Do not use chat keys.
-
-
-
-
-
- Value has to be at least %1 characters long
-
-
-
-
-
- Unknown
-
-
-
-
-
- < 1 min
-
-
-
-
-
- < 3 mins
-
-
-
-
-
- < 5 mins
-
-
-
-
-
- > 5 mins
-
-
-
-
-
- years ago
-
-
-
-
-
- year ago
-
-
-
-
-
- months ago
-
-
-
-
-
- month ago
-
-
-
-
-
- weeks ago
-
-
-
-
-
- week ago
-
-
-
-
-
- days ago
-
-
-
-
-
- day ago
-
-
-
-
-
- hours ago
-
-
-
-
-
- hour ago
-
-
-
-
-
- mins ago
-
-
-
-
-
- min ago
-
-
-
-
-
- secs ago
-
-
-
-
-
- sec ago
-
-
-
-
-
- now
-
-
-
- ViewProfileMenuItem
-
-
-
-
- View Profile
-
-
-
- WakuNodesModal
-
-
-
-
- Waku nodes
-
-
-
-
-
- Use Waku nodes
-
-
-
-
-
- Select node automatically
-
-
-
-
-
- Waku Nodes
-
-
-
-
-
- Node %1
-
-
-
-
-
- Add a new node
-
-
-
- WalletFooter
-
-
-
-
- Send
-
-
-
-
-
- Receive
-
-
-
-
-
- Buy / Sell
-
-
-
- WalletView
-
-
-
-
-
-
-
-
-
-
- Wallet
-
-
-
-
-
- Networks
-
-
-
-
-
- DApp Permissions
-
-
-
-
-
- Testnet Mode
-
-
-
- WelcomeView
-
-
-
-
- Welcome to Status
-
-
-
-
-
- Your fully decentralized gateway to Ethereum and Web3. Crypto wallet, privacy first group chat, and dApp browser.
-
-
-
-
-
- I am new to Status
-
-
-
-
-
- I already use Status
-
-
-
- main
-
-
-
-
- StatusQ Documentation App
-
-
-
-
-
- Status Desktop
-
-
-
-
-
- Open Status
-
-
-
-
-
- Quit
-
-
-
\ No newline at end of file
+ StatusChatInfoButton
+
+
+
+
+
+ %Ln pinned message
+ %Ln pinned messages
+
+
+
+
diff --git a/ui/imports/shared/views/chat/MessageView.qml b/ui/imports/shared/views/chat/MessageView.qml
index d004ad538e..b653edb545 100644
--- a/ui/imports/shared/views/chat/MessageView.qml
+++ b/ui/imports/shared/views/chat/MessageView.qml
@@ -842,8 +842,8 @@ Loader {
ConfirmationDialog {
confirmButtonObjectName: "chatButtonsPanelConfirmDeleteMessageButton"
- header.title: qsTrId("Confirm deleting this message")
- confirmationText: qsTrId("Are you sure you want to delete this message? Be aware that other clients are not guaranteed to delete the message as well.")
+ header.title: qsTr("Confirm deleting this message")
+ confirmationText: qsTr("Are you sure you want to delete this message? Be aware that other clients are not guaranteed to delete the message as well.")
height: 260
checkbox.visible: true
executeConfirm: function () {
diff --git a/ui/nim-status-client.pro b/ui/nim-status-client.pro
index c4aa47721d..074f28696c 100644
--- a/ui/nim-status-client.pro
+++ b/ui/nim-status-client.pro
@@ -19,6 +19,7 @@ SOURCES += $$files("$$PWD/*.js", true)
# Other *.ts files will be provided by Lokalise platform
TRANSLATIONS += \
+ i18n/qml_base.ts \
i18n/qml_en.ts \
OTHER_FILES += $$files("$$PWD/*.qml", true)