wallet-stack 1.0.0-alpha.121

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1288) hide show
  1. package/README.md +86 -0
  2. package/app.plugin.js +1 -0
  3. package/locales/base/translation.json +2998 -0
  4. package/locales/de/translation.json +2998 -0
  5. package/locales/en-US/translation.json +2998 -0
  6. package/locales/es-419/translation.json +2998 -0
  7. package/locales/fr-FR/translation.json +2998 -0
  8. package/locales/index.ts +163 -0
  9. package/locales/it-IT/translation.json +2998 -0
  10. package/locales/pl-PL/translation.json +3004 -0
  11. package/locales/pt-BR/translation.json +2998 -0
  12. package/locales/ru-RU/translation.json +3004 -0
  13. package/locales/th-TH/translation.json +2995 -0
  14. package/locales/tr-TR/translation.json +2998 -0
  15. package/locales/uk-UA/translation.json +3004 -0
  16. package/locales/vi-VN/translation.json +2995 -0
  17. package/locales/zh-CN/translation.json +2995 -0
  18. package/metro-config.js +40 -0
  19. package/package.json +227 -0
  20. package/plugin/build/consts.d.ts +2 -0
  21. package/plugin/build/consts.js +6 -0
  22. package/plugin/build/index.d.ts +8 -0
  23. package/plugin/build/index.js +21 -0
  24. package/plugin/build/withAndroidUserAgent.d.ts +8 -0
  25. package/plugin/build/withAndroidUserAgent.js +86 -0
  26. package/plugin/build/withAndroidWindowSoftInputModeAdjustNothing.d.ts +6 -0
  27. package/plugin/build/withAndroidWindowSoftInputModeAdjustNothing.js +16 -0
  28. package/plugin/build/withIosAppDelegateResetKeychain.d.ts +2 -0
  29. package/plugin/build/withIosAppDelegateResetKeychain.js +77 -0
  30. package/plugin/build/withIosUserAgent.d.ts +8 -0
  31. package/plugin/build/withIosUserAgent.js +56 -0
  32. package/plugin/tsconfig.json +13 -0
  33. package/src/RevokePhoneNumber.tsx +117 -0
  34. package/src/abis/IWalletJumpstart.ts +472 -0
  35. package/src/account/AccountErrorScreen.test.tsx +47 -0
  36. package/src/account/AccountErrorScreen.tsx +72 -0
  37. package/src/account/AccountKeyEducation.test.tsx +20 -0
  38. package/src/account/AccountKeyEducation.tsx +83 -0
  39. package/src/account/AccountSetupFailureScreen.test.tsx +59 -0
  40. package/src/account/AccountSetupFailureScreen.tsx +42 -0
  41. package/src/account/Education.test.tsx +48 -0
  42. package/src/account/Education.tsx +235 -0
  43. package/src/account/GoldEducation.test.tsx +35 -0
  44. package/src/account/GoldEducation.tsx +82 -0
  45. package/src/account/LegalSubmenu.test.tsx +84 -0
  46. package/src/account/LegalSubmenu.tsx +74 -0
  47. package/src/account/LicenseDisclaimer.txt +15310 -0
  48. package/src/account/Licenses.test.tsx +17 -0
  49. package/src/account/Licenses.tsx +43 -0
  50. package/src/account/PreferencesSubmenu.test.tsx +66 -0
  51. package/src/account/PreferencesSubmenu.tsx +87 -0
  52. package/src/account/PrivateKey.test.tsx +241 -0
  53. package/src/account/PrivateKey.tsx +169 -0
  54. package/src/account/Profile.test.tsx +77 -0
  55. package/src/account/Profile.tsx +153 -0
  56. package/src/account/ProfileSubmenu.test.tsx +105 -0
  57. package/src/account/ProfileSubmenu.tsx +89 -0
  58. package/src/account/SecuritySubmenu.test.tsx +305 -0
  59. package/src/account/SecuritySubmenu.tsx +435 -0
  60. package/src/account/ShakeForSupport.test.tsx +23 -0
  61. package/src/account/ShakeForSupport.tsx +112 -0
  62. package/src/account/StoreWipeRecoveryScreen.test.tsx +39 -0
  63. package/src/account/StoreWipeRecoveryScreen.tsx +50 -0
  64. package/src/account/Support.test.tsx +67 -0
  65. package/src/account/Support.tsx +69 -0
  66. package/src/account/SupportContact.test.tsx +95 -0
  67. package/src/account/SupportContact.tsx +265 -0
  68. package/src/account/__snapshots__/AccountKeyEducation.test.tsx.snap +579 -0
  69. package/src/account/__snapshots__/Education.test.tsx.snap +286 -0
  70. package/src/account/__snapshots__/GoldEducation.test.tsx.snap +579 -0
  71. package/src/account/__snapshots__/Licenses.test.tsx.snap +33 -0
  72. package/src/account/__snapshots__/ShakeForSupport.test.tsx.snap +3 -0
  73. package/src/account/actions.ts +270 -0
  74. package/src/account/reducer.test.ts +28 -0
  75. package/src/account/reducer.ts +296 -0
  76. package/src/account/saga.test.ts +209 -0
  77. package/src/account/saga.ts +249 -0
  78. package/src/account/selectors.test.ts +18 -0
  79. package/src/account/selectors.ts +60 -0
  80. package/src/account/updateAccountRegistration.ts +35 -0
  81. package/src/account/utils.ts +36 -0
  82. package/src/account/zendesk.test.ts +166 -0
  83. package/src/account/zendesk.ts +199 -0
  84. package/src/alert/AlertBanner.test.tsx +123 -0
  85. package/src/alert/AlertBanner.tsx +84 -0
  86. package/src/alert/actions.ts +127 -0
  87. package/src/alert/reducer.ts +52 -0
  88. package/src/analytics/AppAnalytics.test.ts +334 -0
  89. package/src/analytics/AppAnalytics.ts +369 -0
  90. package/src/analytics/AsyncStoragePersistor.ts +34 -0
  91. package/src/analytics/Events.test.tsx +49 -0
  92. package/src/analytics/Events.tsx +648 -0
  93. package/src/analytics/InjectTraits.ts +34 -0
  94. package/src/analytics/Properties.tsx +1645 -0
  95. package/src/analytics/README.md +24 -0
  96. package/src/analytics/docs.ts +675 -0
  97. package/src/analytics/saga.test.ts +57 -0
  98. package/src/analytics/saga.ts +21 -0
  99. package/src/analytics/selectors.test.ts +391 -0
  100. package/src/analytics/selectors.ts +200 -0
  101. package/src/analytics/types.ts +46 -0
  102. package/src/app/App.test.tsx +25 -0
  103. package/src/app/App.tsx +124 -0
  104. package/src/app/AppInitGate.test.tsx +100 -0
  105. package/src/app/AppInitGate.tsx +77 -0
  106. package/src/app/AppLoading.test.tsx +11 -0
  107. package/src/app/AppLoading.tsx +79 -0
  108. package/src/app/DebugImages.tsx +110 -0
  109. package/src/app/ErrorBoundary.test.tsx +19 -0
  110. package/src/app/ErrorBoundary.tsx +41 -0
  111. package/src/app/ErrorMessages.ts +40 -0
  112. package/src/app/ErrorScreen.test.tsx +26 -0
  113. package/src/app/ErrorScreen.tsx +57 -0
  114. package/src/app/SanctionedCountryErrorScreen.tsx +37 -0
  115. package/src/app/UpgradeScreen.tsx +28 -0
  116. package/src/app/__snapshots__/AppLoading.test.tsx.snap +35 -0
  117. package/src/app/__snapshots__/ErrorScreen.test.tsx.snap +365 -0
  118. package/src/app/actions.ts +301 -0
  119. package/src/app/crowd_mobile.png +0 -0
  120. package/src/app/reducers.ts +204 -0
  121. package/src/app/saga.test.ts +651 -0
  122. package/src/app/saga.ts +367 -0
  123. package/src/app/selectors.ts +53 -0
  124. package/src/app/useDeepLinks.test.tsx +43 -0
  125. package/src/app/useDeepLinks.ts +72 -0
  126. package/src/app/utils.ts +14 -0
  127. package/src/appConfig.test.ts +37 -0
  128. package/src/appConfig.ts +20 -0
  129. package/src/backup/BackupComplete.test.tsx +61 -0
  130. package/src/backup/BackupComplete.tsx +69 -0
  131. package/src/backup/BackupIntroduction.test.tsx +37 -0
  132. package/src/backup/BackupIntroduction.tsx +157 -0
  133. package/src/backup/BackupPhrase.test.tsx +71 -0
  134. package/src/backup/BackupPhrase.tsx +208 -0
  135. package/src/backup/BackupPhraseContainer.test.tsx +43 -0
  136. package/src/backup/BackupPhraseContainer.tsx +207 -0
  137. package/src/backup/BackupQuiz.test.tsx +130 -0
  138. package/src/backup/BackupQuiz.tsx +429 -0
  139. package/src/backup/CancelConfirm.tsx +60 -0
  140. package/src/backup/QuizzBottom.tsx +57 -0
  141. package/src/backup/__snapshots__/BackupComplete.test.tsx.snap +58 -0
  142. package/src/backup/__snapshots__/BackupPhrase.test.tsx.snap +906 -0
  143. package/src/backup/__snapshots__/BackupPhraseContainer.test.tsx.snap +719 -0
  144. package/src/backup/__snapshots__/BackupQuiz.test.tsx.snap +1313 -0
  145. package/src/backup/utils.test.ts +91 -0
  146. package/src/backup/utils.ts +103 -0
  147. package/src/celoNews/CeloNewsFeed.test.tsx +157 -0
  148. package/src/celoNews/CeloNewsFeed.tsx +161 -0
  149. package/src/celoNews/CeloNewsFeedItem.test.tsx +46 -0
  150. package/src/celoNews/CeloNewsFeedItem.tsx +104 -0
  151. package/src/celoNews/types.ts +14 -0
  152. package/src/components/AccountNumber.test.tsx +25 -0
  153. package/src/components/AccountNumber.tsx +78 -0
  154. package/src/components/AccountNumberCard.tsx +23 -0
  155. package/src/components/Avatar.test.tsx +67 -0
  156. package/src/components/Avatar.tsx +72 -0
  157. package/src/components/BackButton.tsx +44 -0
  158. package/src/components/BeatingHeartLoader.tsx +39 -0
  159. package/src/components/BorderlessButton.tsx +25 -0
  160. package/src/components/BottomSheet.tsx +84 -0
  161. package/src/components/BottomSheetBase.tsx +87 -0
  162. package/src/components/BottomSheetScrollView.tsx +54 -0
  163. package/src/components/Button.test.tsx +94 -0
  164. package/src/components/Button.tsx +259 -0
  165. package/src/components/CallToActionsBar.tsx +68 -0
  166. package/src/components/CancelButton.test.tsx +11 -0
  167. package/src/components/CancelButton.tsx +58 -0
  168. package/src/components/Card.tsx +34 -0
  169. package/src/components/CircleButton.test.tsx +35 -0
  170. package/src/components/CircleButton.tsx +64 -0
  171. package/src/components/ClipboardAwarePasteButton.tsx +65 -0
  172. package/src/components/CloseButton.tsx +41 -0
  173. package/src/components/CodeInput.test.tsx +26 -0
  174. package/src/components/CodeInput.tsx +124 -0
  175. package/src/components/CodeRow.test.tsx +27 -0
  176. package/src/components/CodeRow.tsx +163 -0
  177. package/src/components/ContactCircle.test.tsx +67 -0
  178. package/src/components/ContactCircle.tsx +133 -0
  179. package/src/components/ContactCircleSelf.tsx +28 -0
  180. package/src/components/CurrencyDisplay.tsx +242 -0
  181. package/src/components/DataFieldWithCopy.tsx +75 -0
  182. package/src/components/DevSkipButton.tsx +105 -0
  183. package/src/components/Dialog.test.tsx +14 -0
  184. package/src/components/Dialog.tsx +124 -0
  185. package/src/components/Dropdown.tsx +98 -0
  186. package/src/components/EmptyView.tsx +34 -0
  187. package/src/components/ErrorMessageInline.tsx +78 -0
  188. package/src/components/ExchangesBottomSheet.test.tsx +84 -0
  189. package/src/components/ExchangesBottomSheet.tsx +74 -0
  190. package/src/components/Expandable.tsx +57 -0
  191. package/src/components/FeeDrawer.test.tsx +150 -0
  192. package/src/components/FeeDrawer.tsx +127 -0
  193. package/src/components/FeeIcon.test.tsx +14 -0
  194. package/src/components/FeeIcon.tsx +95 -0
  195. package/src/components/FeeInfoBottomSheet.test.tsx +320 -0
  196. package/src/components/FeeInfoBottomSheet.tsx +219 -0
  197. package/src/components/FilterChipsCarousel.tsx +143 -0
  198. package/src/components/FormField.tsx +23 -0
  199. package/src/components/FormLabel.tsx +21 -0
  200. package/src/components/FormTextInput.tsx +16 -0
  201. package/src/components/FullscreenCTA.test.tsx +58 -0
  202. package/src/components/FullscreenCTA.tsx +60 -0
  203. package/src/components/GasFeeWarning.test.tsx +126 -0
  204. package/src/components/GasFeeWarning.tsx +124 -0
  205. package/src/components/GradientBlock.tsx +20 -0
  206. package/src/components/HorizontalLine.tsx +18 -0
  207. package/src/components/IconWithNetworkBadge.test.tsx +49 -0
  208. package/src/components/IconWithNetworkBadge.tsx +69 -0
  209. package/src/components/InLineNotification.test.tsx +74 -0
  210. package/src/components/InLineNotification.tsx +160 -0
  211. package/src/components/InfoBottomSheet.test.tsx +55 -0
  212. package/src/components/InfoBottomSheet.tsx +79 -0
  213. package/src/components/ItemSeparator.test.tsx +8 -0
  214. package/src/components/ItemSeparator.tsx +16 -0
  215. package/src/components/KeyboardAwareScrollView.tsx +104 -0
  216. package/src/components/KeyboardSpacer.tsx +168 -0
  217. package/src/components/LabelWithInfo.tsx +57 -0
  218. package/src/components/LegacyTokenDisplay.test.tsx +282 -0
  219. package/src/components/LegacyTokenDisplay.tsx +63 -0
  220. package/src/components/LegacyTokenTotalLineItem.test.tsx +90 -0
  221. package/src/components/LegacyTokenTotalLineItem.tsx +38 -0
  222. package/src/components/LineItemRow.tsx +74 -0
  223. package/src/components/ListItem.test.tsx +19 -0
  224. package/src/components/ListItem.tsx +44 -0
  225. package/src/components/MessagingCard.tsx +21 -0
  226. package/src/components/Modal.tsx +57 -0
  227. package/src/components/NumberKeypad.test.tsx +21 -0
  228. package/src/components/NumberKeypad.tsx +102 -0
  229. package/src/components/NumberTicker.tsx +115 -0
  230. package/src/components/OnboardingCard.tsx +61 -0
  231. package/src/components/Pagination.tsx +39 -0
  232. package/src/components/PercentageIndicator.test.tsx +118 -0
  233. package/src/components/PercentageIndicator.tsx +75 -0
  234. package/src/components/PhoneNumberInput.test.tsx +99 -0
  235. package/src/components/PhoneNumberInput.tsx +132 -0
  236. package/src/components/PhoneNumberWithFlag.tsx +54 -0
  237. package/src/components/QrScanButton.test.tsx +21 -0
  238. package/src/components/QrScanButton.tsx +30 -0
  239. package/src/components/RecoveryPhraseInput.test.tsx +26 -0
  240. package/src/components/RecoveryPhraseInput.tsx +188 -0
  241. package/src/components/ReviewHeader.test.tsx +21 -0
  242. package/src/components/ReviewHeader.tsx +36 -0
  243. package/src/components/ReviewTransaction.test.tsx +474 -0
  244. package/src/components/ReviewTransaction.tsx +526 -0
  245. package/src/components/RowDivider.tsx +36 -0
  246. package/src/components/SearchInput.tsx +40 -0
  247. package/src/components/SectionHead.test.tsx +9 -0
  248. package/src/components/SectionHead.tsx +33 -0
  249. package/src/components/SegmentedControl.test.tsx +28 -0
  250. package/src/components/SegmentedControl.tsx +156 -0
  251. package/src/components/SelectRecipientButton.tsx +89 -0
  252. package/src/components/SelectionOption.test.tsx +18 -0
  253. package/src/components/SelectionOption.tsx +62 -0
  254. package/src/components/SettingsGearButton.tsx +30 -0
  255. package/src/components/SettingsItem.test.tsx +80 -0
  256. package/src/components/SettingsItem.tsx +195 -0
  257. package/src/components/SimpleMessagingCard.test.tsx +54 -0
  258. package/src/components/SimpleMessagingCard.tsx +90 -0
  259. package/src/components/SingleDigitInput.tsx +53 -0
  260. package/src/components/SkeletonPlaceholder.tsx +33 -0
  261. package/src/components/SmallButton.test.tsx +41 -0
  262. package/src/components/SmallButton.tsx +74 -0
  263. package/src/components/SmartTopAlert.test.tsx +22 -0
  264. package/src/components/SmartTopAlert.tsx +183 -0
  265. package/src/components/Switch.tsx +19 -0
  266. package/src/components/TextButton.tsx +22 -0
  267. package/src/components/TextInput.tsx +133 -0
  268. package/src/components/TextInputWithButtons.test.tsx +24 -0
  269. package/src/components/TextInputWithButtons.tsx +54 -0
  270. package/src/components/Toast.test.tsx +62 -0
  271. package/src/components/Toast.tsx +180 -0
  272. package/src/components/TokenBalance.test.tsx +389 -0
  273. package/src/components/TokenBalance.tsx +321 -0
  274. package/src/components/TokenBottomSheet.test.tsx +356 -0
  275. package/src/components/TokenBottomSheet.tsx +413 -0
  276. package/src/components/TokenDisplay.test.tsx +274 -0
  277. package/src/components/TokenDisplay.tsx +104 -0
  278. package/src/components/TokenEnterAmount.test.tsx +461 -0
  279. package/src/components/TokenEnterAmount.tsx +591 -0
  280. package/src/components/TokenIcon.test.tsx +93 -0
  281. package/src/components/TokenIcon.tsx +142 -0
  282. package/src/components/TokenTotalLineItem.test.tsx +199 -0
  283. package/src/components/TokenTotalLineItem.tsx +103 -0
  284. package/src/components/Touchable.tsx +48 -0
  285. package/src/components/ValidatedTextInput.tsx +96 -0
  286. package/src/components/WebView.tsx +43 -0
  287. package/src/components/WithPasteAware.tsx +113 -0
  288. package/src/components/WithTextInputPasteAware.tsx +51 -0
  289. package/src/components/__snapshots__/AccountNumber.test.tsx.snap +87 -0
  290. package/src/components/__snapshots__/Avatar.test.tsx.snap +435 -0
  291. package/src/components/__snapshots__/Button.test.tsx.snap +292 -0
  292. package/src/components/__snapshots__/CircleButton.test.tsx.snap +211 -0
  293. package/src/components/__snapshots__/CodeRow.test.tsx.snap +211 -0
  294. package/src/components/__snapshots__/ContactCircle.test.tsx.snap +46 -0
  295. package/src/components/__snapshots__/Dialog.test.tsx.snap +248 -0
  296. package/src/components/__snapshots__/FeeIcon.test.tsx.snap +147 -0
  297. package/src/components/__snapshots__/FullscreenCTA.test.tsx.snap +183 -0
  298. package/src/components/__snapshots__/ItemSeparator.test.tsx.snap +13 -0
  299. package/src/components/__snapshots__/NumberKeypad.test.tsx.snap +1434 -0
  300. package/src/components/__snapshots__/PhoneNumberInput.test.tsx.snap +202 -0
  301. package/src/components/__snapshots__/SectionHead.test.tsx.snap +32 -0
  302. package/src/components/__snapshots__/SelectionOption.test.tsx.snap +197 -0
  303. package/src/components/__snapshots__/SettingsItem.test.tsx.snap +226 -0
  304. package/src/components/__snapshots__/SmartTopAlert.test.tsx.snap +103 -0
  305. package/src/components/__snapshots__/TextInputWithButtons.test.tsx.snap +78 -0
  306. package/src/components/header/CustomHeader.tsx +56 -0
  307. package/src/components/multiSelect/MultiSelectBottomSheet.test.tsx +175 -0
  308. package/src/components/multiSelect/MultiSelectBottomSheet.tsx +249 -0
  309. package/src/components/multiSelect/NetworkMultiSelectBottomSheet.test.tsx +77 -0
  310. package/src/components/multiSelect/NetworkMultiSelectBottomSheet.tsx +56 -0
  311. package/src/components/useShowOrHideAnimation.tsx +33 -0
  312. package/src/config.enc +0 -0
  313. package/src/config.ts +186 -0
  314. package/src/dapps/DappShortcutTransactionRequest.test.tsx +187 -0
  315. package/src/dapps/DappShortcutTransactionRequest.tsx +270 -0
  316. package/src/dapps/DappShortcutsRewards.test.tsx +292 -0
  317. package/src/dapps/DappShortcutsRewards.tsx +284 -0
  318. package/src/dapps/DappsScreen.test.tsx +716 -0
  319. package/src/dapps/DappsScreen.tsx +365 -0
  320. package/src/dapps/saga.test.ts +194 -0
  321. package/src/dapps/saga.ts +136 -0
  322. package/src/dapps/selectors.test.ts +127 -0
  323. package/src/dapps/selectors.ts +123 -0
  324. package/src/dapps/slice.ts +110 -0
  325. package/src/dapps/types.ts +30 -0
  326. package/src/dappsExplorer/DappCard.tsx +141 -0
  327. package/src/dappsExplorer/DappFeaturedActions.test.tsx +72 -0
  328. package/src/dappsExplorer/DappFeaturedActions.tsx +121 -0
  329. package/src/dappsExplorer/DiscoverDappsCard.tsx +186 -0
  330. package/src/dappsExplorer/NoResults.tsx +126 -0
  331. package/src/dappsExplorer/TabDiscover.test.tsx +397 -0
  332. package/src/dappsExplorer/TabDiscover.tsx +76 -0
  333. package/src/dappsExplorer/searchDappList.test.tsx +69 -0
  334. package/src/dappsExplorer/searchDappList.tsx +113 -0
  335. package/src/dappsExplorer/useDappFavoritedToast.tsx +56 -0
  336. package/src/dappsExplorer/useOpenDapp.tsx +31 -0
  337. package/src/divviProtocol/saga.test.ts +51 -0
  338. package/src/divviProtocol/saga.ts +44 -0
  339. package/src/earn/ActionCard.tsx +46 -0
  340. package/src/earn/EarnDepositConfirmationScreen.test.tsx +603 -0
  341. package/src/earn/EarnDepositConfirmationScreen.tsx +596 -0
  342. package/src/earn/EarnEnterAmount.test.tsx +1296 -0
  343. package/src/earn/EarnEnterAmount.tsx +815 -0
  344. package/src/earn/EarnEntrypoint.test.tsx +100 -0
  345. package/src/earn/EarnEntrypoint.tsx +127 -0
  346. package/src/earn/EarnHome.test.tsx +237 -0
  347. package/src/earn/EarnHome.tsx +411 -0
  348. package/src/earn/EarnInfoScreen.test.tsx +96 -0
  349. package/src/earn/EarnInfoScreen.tsx +174 -0
  350. package/src/earn/EarnTabBar.test.tsx +43 -0
  351. package/src/earn/EarnTabBar.tsx +73 -0
  352. package/src/earn/EarnWithdrawConfirmationScreen.test.tsx +1022 -0
  353. package/src/earn/EarnWithdrawConfirmationScreen.tsx +476 -0
  354. package/src/earn/PoolCard.test.tsx +68 -0
  355. package/src/earn/PoolCard.tsx +218 -0
  356. package/src/earn/PoolList.tsx +87 -0
  357. package/src/earn/TabEarn.test.tsx +159 -0
  358. package/src/earn/TabEarn.tsx +354 -0
  359. package/src/earn/hooks.test.tsx +328 -0
  360. package/src/earn/hooks.ts +178 -0
  361. package/src/earn/poolInfoScreen/BeforeDepositBottomSheet.test.tsx +411 -0
  362. package/src/earn/poolInfoScreen/BeforeDepositBottomSheet.tsx +448 -0
  363. package/src/earn/poolInfoScreen/Cards.tsx +383 -0
  364. package/src/earn/poolInfoScreen/EarnPoolInfoScreen.test.tsx +498 -0
  365. package/src/earn/poolInfoScreen/EarnPoolInfoScreen.tsx +595 -0
  366. package/src/earn/poolInfoScreen/SafetyCard.test.tsx +108 -0
  367. package/src/earn/poolInfoScreen/SafetyCard.tsx +165 -0
  368. package/src/earn/poolInfoScreen/TokenIcons.tsx +37 -0
  369. package/src/earn/poolInfoScreen/WithdrawBottomSheet.test.tsx +235 -0
  370. package/src/earn/poolInfoScreen/WithdrawBottomSheet.tsx +168 -0
  371. package/src/earn/prepareTransactions.test.ts +616 -0
  372. package/src/earn/prepareTransactions.ts +281 -0
  373. package/src/earn/saga.test.ts +1149 -0
  374. package/src/earn/saga.ts +456 -0
  375. package/src/earn/selectors.ts +5 -0
  376. package/src/earn/simulateTransactions.test.ts +121 -0
  377. package/src/earn/simulateTransactions.ts +58 -0
  378. package/src/earn/slice.test.ts +87 -0
  379. package/src/earn/slice.ts +73 -0
  380. package/src/earn/types.ts +70 -0
  381. package/src/earn/utils.test.ts +48 -0
  382. package/src/earn/utils.ts +54 -0
  383. package/src/fiatExchanges/BidaliScreen.test.tsx +163 -0
  384. package/src/fiatExchanges/BidaliScreen.tsx +189 -0
  385. package/src/fiatExchanges/CashInSuccess.test.tsx +54 -0
  386. package/src/fiatExchanges/CashInSuccess.tsx +104 -0
  387. package/src/fiatExchanges/ExchangeQR.test.tsx +100 -0
  388. package/src/fiatExchanges/ExchangeQR.tsx +94 -0
  389. package/src/fiatExchanges/ExternalExchanges.test.tsx +67 -0
  390. package/src/fiatExchanges/ExternalExchanges.tsx +104 -0
  391. package/src/fiatExchanges/FiatExchangeAmount.test.tsx +418 -0
  392. package/src/fiatExchanges/FiatExchangeAmount.tsx +305 -0
  393. package/src/fiatExchanges/FiatExchangeCurrencyBottomSheet.test.tsx +309 -0
  394. package/src/fiatExchanges/FiatExchangeCurrencyBottomSheet.tsx +139 -0
  395. package/src/fiatExchanges/PaymentMethodSection.test.tsx +259 -0
  396. package/src/fiatExchanges/PaymentMethodSection.tsx +378 -0
  397. package/src/fiatExchanges/ReviewFees.test.tsx +74 -0
  398. package/src/fiatExchanges/ReviewFees.tsx +202 -0
  399. package/src/fiatExchanges/SelectProvider.test.tsx +415 -0
  400. package/src/fiatExchanges/SelectProvider.tsx +649 -0
  401. package/src/fiatExchanges/SimplexScreen.test.tsx +109 -0
  402. package/src/fiatExchanges/SimplexScreen.tsx +185 -0
  403. package/src/fiatExchanges/Spend.tsx +104 -0
  404. package/src/fiatExchanges/WithdrawSpend.test.tsx +37 -0
  405. package/src/fiatExchanges/WithdrawSpend.tsx +139 -0
  406. package/src/fiatExchanges/__snapshots__/CashInSuccess.test.tsx.snap +351 -0
  407. package/src/fiatExchanges/__snapshots__/FiatExchangeAmount.test.tsx.snap +397 -0
  408. package/src/fiatExchanges/__snapshots__/ReviewFees.test.tsx.snap +844 -0
  409. package/src/fiatExchanges/__snapshots__/SimplexScreen.test.tsx.snap +1083 -0
  410. package/src/fiatExchanges/actions.ts +67 -0
  411. package/src/fiatExchanges/amount.test.tsx +48 -0
  412. package/src/fiatExchanges/amount.tsx +45 -0
  413. package/src/fiatExchanges/quotes/ExternalQuote.test.ts +172 -0
  414. package/src/fiatExchanges/quotes/ExternalQuote.ts +121 -0
  415. package/src/fiatExchanges/quotes/FiatConnectQuote.test.ts +718 -0
  416. package/src/fiatExchanges/quotes/FiatConnectQuote.ts +343 -0
  417. package/src/fiatExchanges/quotes/NormalizedQuote.ts +47 -0
  418. package/src/fiatExchanges/quotes/constants.ts +63 -0
  419. package/src/fiatExchanges/quotes/normalizeQuotes.test.ts +102 -0
  420. package/src/fiatExchanges/quotes/normalizeQuotes.ts +76 -0
  421. package/src/fiatExchanges/quotes/utils.ts +31 -0
  422. package/src/fiatExchanges/reducer.ts +65 -0
  423. package/src/fiatExchanges/saga.test.ts +281 -0
  424. package/src/fiatExchanges/saga.ts +195 -0
  425. package/src/fiatExchanges/types.ts +104 -0
  426. package/src/fiatExchanges/utils.test.ts +159 -0
  427. package/src/fiatExchanges/utils.tsx +287 -0
  428. package/src/fiatconnect/FiatDetailsScreen.test.tsx +371 -0
  429. package/src/fiatconnect/FiatDetailsScreen.tsx +441 -0
  430. package/src/fiatconnect/LinkAccountScreen.test.tsx +107 -0
  431. package/src/fiatconnect/LinkAccountScreen.tsx +180 -0
  432. package/src/fiatconnect/RefetchQuoteScreen.test.tsx +119 -0
  433. package/src/fiatconnect/RefetchQuoteScreen.tsx +68 -0
  434. package/src/fiatconnect/ReviewScreen.test.tsx +505 -0
  435. package/src/fiatconnect/ReviewScreen.tsx +708 -0
  436. package/src/fiatconnect/TransferStatusScreen.test.tsx +399 -0
  437. package/src/fiatconnect/TransferStatusScreen.tsx +351 -0
  438. package/src/fiatconnect/clients.test.tsx +83 -0
  439. package/src/fiatconnect/clients.ts +69 -0
  440. package/src/fiatconnect/consts.ts +41 -0
  441. package/src/fiatconnect/fiatAccountSchemas/accountNumber.test.ts +60 -0
  442. package/src/fiatconnect/fiatAccountSchemas/accountNumber.ts +55 -0
  443. package/src/fiatconnect/fiatAccountSchemas/ibanNumber.test.ts +53 -0
  444. package/src/fiatconnect/fiatAccountSchemas/ibanNumber.ts +56 -0
  445. package/src/fiatconnect/fiatAccountSchemas/ifscAccount.test.ts +45 -0
  446. package/src/fiatconnect/fiatAccountSchemas/ifscAccount.ts +58 -0
  447. package/src/fiatconnect/fiatAccountSchemas/index.test.ts +119 -0
  448. package/src/fiatconnect/fiatAccountSchemas/index.ts +89 -0
  449. package/src/fiatconnect/fiatAccountSchemas/mobileMoney.test.ts +29 -0
  450. package/src/fiatconnect/fiatAccountSchemas/mobileMoney.ts +61 -0
  451. package/src/fiatconnect/fiatAccountSchemas/pixAccount.test.ts +45 -0
  452. package/src/fiatconnect/fiatAccountSchemas/pixAccount.ts +62 -0
  453. package/src/fiatconnect/fiatAccountSchemas/types.ts +40 -0
  454. package/src/fiatconnect/index.test.ts +244 -0
  455. package/src/fiatconnect/index.ts +179 -0
  456. package/src/fiatconnect/kyc/KycDenied.test.tsx +139 -0
  457. package/src/fiatconnect/kyc/KycDenied.tsx +144 -0
  458. package/src/fiatconnect/kyc/KycExpired.test.tsx +128 -0
  459. package/src/fiatconnect/kyc/KycExpired.tsx +127 -0
  460. package/src/fiatconnect/kyc/KycInactive.test.tsx +139 -0
  461. package/src/fiatconnect/kyc/KycInactive.tsx +100 -0
  462. package/src/fiatconnect/kyc/KycPending.test.tsx +82 -0
  463. package/src/fiatconnect/kyc/KycPending.tsx +106 -0
  464. package/src/fiatconnect/kyc/getNavigationOptions.tsx +72 -0
  465. package/src/fiatconnect/saga.test.ts +2594 -0
  466. package/src/fiatconnect/saga.ts +1133 -0
  467. package/src/fiatconnect/selectors.ts +24 -0
  468. package/src/fiatconnect/slice.test.ts +79 -0
  469. package/src/fiatconnect/slice.ts +380 -0
  470. package/src/fiatconnect/types.ts +24 -0
  471. package/src/firebase/actions.ts +11 -0
  472. package/src/firebase/db-rules.json +129 -0
  473. package/src/firebase/firebase.test.ts +190 -0
  474. package/src/firebase/firebase.ts +315 -0
  475. package/src/firebase/notifications.test.ts +180 -0
  476. package/src/firebase/notifications.ts +106 -0
  477. package/src/firebase/saga.test.ts +23 -0
  478. package/src/firebase/saga.ts +81 -0
  479. package/src/flags.ts +76 -0
  480. package/src/home/ActionsCarousel.test.tsx +162 -0
  481. package/src/home/ActionsCarousel.tsx +161 -0
  482. package/src/home/DivviBottomSheet.test.tsx +59 -0
  483. package/src/home/DivviBottomSheet.tsx +197 -0
  484. package/src/home/GetStarted.test.tsx +47 -0
  485. package/src/home/GetStarted.tsx +115 -0
  486. package/src/home/NotificationBell.test.tsx +81 -0
  487. package/src/home/NotificationBell.tsx +42 -0
  488. package/src/home/NotificationBox.test.tsx +373 -0
  489. package/src/home/NotificationBox.tsx +362 -0
  490. package/src/home/NotificationCenter.test.tsx +466 -0
  491. package/src/home/NotificationCenter.tsx +185 -0
  492. package/src/home/SendBar.tsx +60 -0
  493. package/src/home/TabHome.test.tsx +336 -0
  494. package/src/home/TabHome.tsx +181 -0
  495. package/src/home/__snapshots__/NotificationBox.test.tsx.snap +933 -0
  496. package/src/home/actions.ts +154 -0
  497. package/src/home/celebration/ConfettiCelebration.tsx +170 -0
  498. package/src/home/celebration/NftCelebration.test.tsx +137 -0
  499. package/src/home/celebration/NftCelebration.tsx +207 -0
  500. package/src/home/celebration/NftReward.test.tsx +94 -0
  501. package/src/home/celebration/NftReward.tsx +172 -0
  502. package/src/home/celebration/confettiAnimation.json +5126 -0
  503. package/src/home/celebration/utils.test.ts +32 -0
  504. package/src/home/celebration/utils.ts +21 -0
  505. package/src/home/reducers.test.ts +245 -0
  506. package/src/home/reducers.ts +191 -0
  507. package/src/home/saga.test.ts +34 -0
  508. package/src/home/saga.ts +87 -0
  509. package/src/home/selectors.test.ts +302 -0
  510. package/src/home/selectors.ts +82 -0
  511. package/src/home/types.ts +31 -0
  512. package/src/i18n/i18n.test.ts +106 -0
  513. package/src/i18n/index.ts +88 -0
  514. package/src/i18n/otaTranslations.test.ts +34 -0
  515. package/src/i18n/otaTranslations.ts +15 -0
  516. package/src/i18n/saga.test.ts +106 -0
  517. package/src/i18n/saga.ts +92 -0
  518. package/src/i18n/selectors.ts +12 -0
  519. package/src/i18n/slice.ts +46 -0
  520. package/src/i18n/useChangeLanguage.test.tsx +53 -0
  521. package/src/i18n/useChangeLanguage.ts +19 -0
  522. package/src/icons/Activity.tsx +21 -0
  523. package/src/icons/Apple.tsx +14 -0
  524. package/src/icons/ArrowDown.tsx +19 -0
  525. package/src/icons/ArrowRightThick.tsx +16 -0
  526. package/src/icons/Attention.tsx +22 -0
  527. package/src/icons/BackChevron.tsx +24 -0
  528. package/src/icons/Backspace.tsx +31 -0
  529. package/src/icons/BankIcon.tsx +23 -0
  530. package/src/icons/Celebration.tsx +18 -0
  531. package/src/icons/CheckCircle.tsx +19 -0
  532. package/src/icons/Checkmark.tsx +26 -0
  533. package/src/icons/CircleArrowIcon.tsx +39 -0
  534. package/src/icons/CircledIcon.tsx +47 -0
  535. package/src/icons/Clipboard.tsx +17 -0
  536. package/src/icons/ClockIcon.tsx +23 -0
  537. package/src/icons/CloudCheck.tsx +19 -0
  538. package/src/icons/ComingSoon.tsx +18 -0
  539. package/src/icons/CopyIcon.tsx +14 -0
  540. package/src/icons/CrossChainIndicator.tsx +36 -0
  541. package/src/icons/DataDown.tsx +16 -0
  542. package/src/icons/DataUp.tsx +16 -0
  543. package/src/icons/DownArrowIcon.tsx +37 -0
  544. package/src/icons/EarnCoins.tsx +22 -0
  545. package/src/icons/Error.tsx +30 -0
  546. package/src/icons/Exit.tsx +18 -0
  547. package/src/icons/ExploreTokens.tsx +17 -0
  548. package/src/icons/EyeIcon.tsx +22 -0
  549. package/src/icons/ForwardChevron.tsx +30 -0
  550. package/src/icons/GearIcon.tsx +19 -0
  551. package/src/icons/Google.tsx +14 -0
  552. package/src/icons/GradientIcon.tsx +70 -0
  553. package/src/icons/GreenLoadingSpinner.tsx +16 -0
  554. package/src/icons/GreenLoadingSpinnerToCheck.tsx +16 -0
  555. package/src/icons/HamburgerCard.tsx +55 -0
  556. package/src/icons/Help.tsx +21 -0
  557. package/src/icons/HiddenEyeIcon.tsx +26 -0
  558. package/src/icons/ImageErrorIcon.tsx +26 -0
  559. package/src/icons/InfoIcon.tsx +33 -0
  560. package/src/icons/KeylessBackup.tsx +32 -0
  561. package/src/icons/LinkArrow.tsx +27 -0
  562. package/src/icons/LoadingSpinner.tsx +25 -0
  563. package/src/icons/Lock.tsx +19 -0
  564. package/src/icons/MagicWand.tsx +20 -0
  565. package/src/icons/Manage.tsx +22 -0
  566. package/src/icons/NotificationBellIcon.tsx +25 -0
  567. package/src/icons/OpenLinkIcon.tsx +18 -0
  568. package/src/icons/Paste.tsx +33 -0
  569. package/src/icons/Phone.tsx +20 -0
  570. package/src/icons/Preferences.tsx +21 -0
  571. package/src/icons/QRCode.tsx +14 -0
  572. package/src/icons/RadioButton.tsx +39 -0
  573. package/src/icons/RedLoadingSpinnerToInfo.tsx +16 -0
  574. package/src/icons/Refresh.tsx +30 -0
  575. package/src/icons/Reward.tsx +29 -0
  576. package/src/icons/ScanIcon.tsx +26 -0
  577. package/src/icons/Search.tsx +25 -0
  578. package/src/icons/Share.tsx +21 -0
  579. package/src/icons/Social.tsx +15 -0
  580. package/src/icons/Stack.tsx +21 -0
  581. package/src/icons/StarOutline.tsx +14 -0
  582. package/src/icons/SwapAndDeposit.tsx +20 -0
  583. package/src/icons/SwapArrows.tsx +20 -0
  584. package/src/icons/ThumbsUpIllustration.tsx +64 -0
  585. package/src/icons/Times.tsx +38 -0
  586. package/src/icons/TripleDotVertical.tsx +18 -0
  587. package/src/icons/Trophy.tsx +18 -0
  588. package/src/icons/User.tsx +19 -0
  589. package/src/icons/Warning.tsx +22 -0
  590. package/src/icons/biometry/Face.tsx +28 -0
  591. package/src/icons/biometry/FaceID.tsx +18 -0
  592. package/src/icons/biometry/Fingerprint.tsx +16 -0
  593. package/src/icons/biometry/Iris.tsx +22 -0
  594. package/src/icons/biometry/TouchID.tsx +44 -0
  595. package/src/icons/loadingSpinnerGreen.json +401 -0
  596. package/src/icons/lottie-json/greenLoadingSpinner.json +370 -0
  597. package/src/icons/lottie-json/greenLoadingSpinnerToCheck.json +666 -0
  598. package/src/icons/lottie-json/redLoadingSpinnerToInfo.json +950 -0
  599. package/src/icons/navigator/Discover.tsx +17 -0
  600. package/src/icons/navigator/Home.tsx +18 -0
  601. package/src/icons/navigator/Wallet.tsx +18 -0
  602. package/src/icons/quick-actions/Add.tsx +18 -0
  603. package/src/icons/quick-actions/More.tsx +19 -0
  604. package/src/icons/quick-actions/Receive.tsx +18 -0
  605. package/src/icons/quick-actions/Send.tsx +18 -0
  606. package/src/icons/quick-actions/Withdraw.tsx +18 -0
  607. package/src/identity/actions.ts +244 -0
  608. package/src/identity/contactMapping.test.ts +391 -0
  609. package/src/identity/contactMapping.ts +422 -0
  610. package/src/identity/reducer.ts +243 -0
  611. package/src/identity/saga.test.ts +103 -0
  612. package/src/identity/saga.ts +122 -0
  613. package/src/identity/secureSend.ts +171 -0
  614. package/src/identity/selectors.ts +16 -0
  615. package/src/identity/types.ts +14 -0
  616. package/src/images/Blob.tsx +20 -0
  617. package/src/images/Celebration.tsx +35 -0
  618. package/src/images/DivviLogo.tsx +22 -0
  619. package/src/images/GuideKeyIcon.tsx +51 -0
  620. package/src/images/Images.ts +22 -0
  621. package/src/images/Logo.tsx +66 -0
  622. package/src/images/LogoHeart.tsx +206 -0
  623. package/src/images/NftReceivedIcon.tsx +18 -0
  624. package/src/images/NftSentIcon.tsx +18 -0
  625. package/src/images/Palm.tsx +21 -0
  626. package/src/images/Star.tsx +20 -0
  627. package/src/images/WelcomeLogo.tsx +19 -0
  628. package/src/images/assets/account-key-1.png +0 -0
  629. package/src/images/assets/account-key-1@1.5x.png +0 -0
  630. package/src/images/assets/account-key-1@2x.png +0 -0
  631. package/src/images/assets/account-key-1@3x.png +0 -0
  632. package/src/images/assets/account-key-1@4x.png +0 -0
  633. package/src/images/assets/account-key-2.png +0 -0
  634. package/src/images/assets/account-key-2@1.5x.png +0 -0
  635. package/src/images/assets/account-key-2@2x.png +0 -0
  636. package/src/images/assets/account-key-2@3x.png +0 -0
  637. package/src/images/assets/account-key-2@4x.png +0 -0
  638. package/src/images/assets/account-key-3.png +0 -0
  639. package/src/images/assets/account-key-3@1.5x.png +0 -0
  640. package/src/images/assets/account-key-3@2x.png +0 -0
  641. package/src/images/assets/account-key-3@3x.png +0 -0
  642. package/src/images/assets/account-key-3@4x.png +0 -0
  643. package/src/images/assets/account-key-4.png +0 -0
  644. package/src/images/assets/account-key-4@1.5x.png +0 -0
  645. package/src/images/assets/account-key-4@2x.png +0 -0
  646. package/src/images/assets/account-key-4@3x.png +0 -0
  647. package/src/images/assets/account-key-4@4x.png +0 -0
  648. package/src/images/assets/biometry-face-id.png +0 -0
  649. package/src/images/assets/biometry-face-id@1.5x.png +0 -0
  650. package/src/images/assets/biometry-face-id@2x.png +0 -0
  651. package/src/images/assets/biometry-face-id@3x.png +0 -0
  652. package/src/images/assets/biometry-face-id@4x.png +0 -0
  653. package/src/images/assets/biometry-face.png +0 -0
  654. package/src/images/assets/biometry-face@1.5x.png +0 -0
  655. package/src/images/assets/biometry-face@2x.png +0 -0
  656. package/src/images/assets/biometry-face@3x.png +0 -0
  657. package/src/images/assets/biometry-face@4x.png +0 -0
  658. package/src/images/assets/biometry-fingerprint.png +0 -0
  659. package/src/images/assets/biometry-fingerprint@1.5x.png +0 -0
  660. package/src/images/assets/biometry-fingerprint@2x.png +0 -0
  661. package/src/images/assets/biometry-fingerprint@3x.png +0 -0
  662. package/src/images/assets/biometry-fingerprint@4x.png +0 -0
  663. package/src/images/assets/biometry-iris.png +0 -0
  664. package/src/images/assets/biometry-iris@1.5x.png +0 -0
  665. package/src/images/assets/biometry-iris@2x.png +0 -0
  666. package/src/images/assets/biometry-iris@3x.png +0 -0
  667. package/src/images/assets/biometry-iris@4x.png +0 -0
  668. package/src/images/assets/biometry-touch-id.png +0 -0
  669. package/src/images/assets/biometry-touch-id@1.5x.png +0 -0
  670. package/src/images/assets/biometry-touch-id@2x.png +0 -0
  671. package/src/images/assets/biometry-touch-id@3x.png +0 -0
  672. package/src/images/assets/biometry-touch-id@4x.png +0 -0
  673. package/src/images/assets/celo-education-1.png +0 -0
  674. package/src/images/assets/celo-education-1@1.5x.png +0 -0
  675. package/src/images/assets/celo-education-1@2x.png +0 -0
  676. package/src/images/assets/celo-education-1@3x.png +0 -0
  677. package/src/images/assets/celo-education-1@4x.png +0 -0
  678. package/src/images/assets/celo-education-2.png +0 -0
  679. package/src/images/assets/celo-education-2@1.5x.png +0 -0
  680. package/src/images/assets/celo-education-2@2x.png +0 -0
  681. package/src/images/assets/celo-education-2@3x.png +0 -0
  682. package/src/images/assets/celo-education-2@4x.png +0 -0
  683. package/src/images/assets/celo-education-3.png +0 -0
  684. package/src/images/assets/celo-education-3@1.5x.png +0 -0
  685. package/src/images/assets/celo-education-3@2x.png +0 -0
  686. package/src/images/assets/celo-education-3@3x.png +0 -0
  687. package/src/images/assets/celo-education-3@4x.png +0 -0
  688. package/src/images/assets/celo-education-4.png +0 -0
  689. package/src/images/assets/celo-education-4@1.5x.png +0 -0
  690. package/src/images/assets/celo-education-4@2x.png +0 -0
  691. package/src/images/assets/celo-education-4@3x.png +0 -0
  692. package/src/images/assets/celo-education-4@4x.png +0 -0
  693. package/src/images/assets/earn-card-background.png +0 -0
  694. package/src/images/assets/earn-card-background@1.5x.png +0 -0
  695. package/src/images/assets/earn-card-background@2x.png +0 -0
  696. package/src/images/assets/earn-card-background@3x.png +0 -0
  697. package/src/images/assets/earn-card-background@4x.png +0 -0
  698. package/src/images/assets/email.png +0 -0
  699. package/src/images/assets/email@1.5x.png +0 -0
  700. package/src/images/assets/email@2x.png +0 -0
  701. package/src/images/assets/email@3x.png +0 -0
  702. package/src/images/assets/email@4x.png +0 -0
  703. package/src/images/assets/fiat-exchange.png +0 -0
  704. package/src/images/assets/fiat-exchange@1.5x.png +0 -0
  705. package/src/images/assets/fiat-exchange@2x.png +0 -0
  706. package/src/images/assets/fiat-exchange@3x.png +0 -0
  707. package/src/images/assets/fiat-exchange@4x.png +0 -0
  708. package/src/images/assets/get-verified.png +0 -0
  709. package/src/images/assets/get-verified@1.5x.png +0 -0
  710. package/src/images/assets/get-verified@2x.png +0 -0
  711. package/src/images/assets/get-verified@3x.png +0 -0
  712. package/src/images/assets/get-verified@4x.png +0 -0
  713. package/src/images/assets/learn-celo.png +0 -0
  714. package/src/images/assets/learn-celo@1.5x.png +0 -0
  715. package/src/images/assets/learn-celo@2x.png +0 -0
  716. package/src/images/assets/learn-celo@3x.png +0 -0
  717. package/src/images/assets/learn-celo@4x.png +0 -0
  718. package/src/images/assets/pie.png +0 -0
  719. package/src/images/assets/pie@1.5x.png +0 -0
  720. package/src/images/assets/pie@2x.png +0 -0
  721. package/src/images/assets/pie@3x.png +0 -0
  722. package/src/images/assets/pie@4x.png +0 -0
  723. package/src/images/assets/points-card-background.png +0 -0
  724. package/src/images/assets/points-card-background@1.5x.png +0 -0
  725. package/src/images/assets/points-card-background@2x.png +0 -0
  726. package/src/images/assets/points-card-background@3x.png +0 -0
  727. package/src/images/assets/points-card-background@4x.png +0 -0
  728. package/src/images/assets/points-illustration.png +0 -0
  729. package/src/images/assets/points-illustration@1.5x.png +0 -0
  730. package/src/images/assets/points-illustration@2x.png +0 -0
  731. package/src/images/assets/points-illustration@3x.png +0 -0
  732. package/src/images/assets/points-illustration@4x.png +0 -0
  733. package/src/images/assets/wallet-safe.png +0 -0
  734. package/src/images/assets/wallet-safe@1.5x.png +0 -0
  735. package/src/images/assets/wallet-safe@2x.png +0 -0
  736. package/src/images/assets/wallet-safe@3x.png +0 -0
  737. package/src/images/assets/wallet-safe@4x.png +0 -0
  738. package/src/import/ImportWallet.test.tsx +102 -0
  739. package/src/import/ImportWallet.tsx +277 -0
  740. package/src/import/actions.ts +41 -0
  741. package/src/import/reducer.ts +28 -0
  742. package/src/import/saga.test.ts +165 -0
  743. package/src/import/saga.ts +250 -0
  744. package/src/in-house-liquidity/client.test.ts +34 -0
  745. package/src/in-house-liquidity/client.ts +38 -0
  746. package/src/in-house-liquidity/index.test.ts +258 -0
  747. package/src/in-house-liquidity/index.ts +187 -0
  748. package/src/index.d.ts +25 -0
  749. package/src/jumpstart/JumpstartTransactionDetailsScreen.test.tsx +329 -0
  750. package/src/jumpstart/JumpstartTransactionDetailsScreen.tsx +407 -0
  751. package/src/jumpstart/fetchClaimStatus.ts +46 -0
  752. package/src/jumpstart/saga.test.ts +117 -0
  753. package/src/jumpstart/saga.ts +82 -0
  754. package/src/jumpstart/selectors.ts +5 -0
  755. package/src/jumpstart/slice.test.ts +51 -0
  756. package/src/jumpstart/slice.ts +64 -0
  757. package/src/keylessBackup/EnvelopeIcon.tsx +19 -0
  758. package/src/keylessBackup/KeylessBackupCancelButton.test.tsx +55 -0
  759. package/src/keylessBackup/KeylessBackupCancelButton.tsx +26 -0
  760. package/src/keylessBackup/KeylessBackupIntro.test.tsx +76 -0
  761. package/src/keylessBackup/KeylessBackupIntro.tsx +175 -0
  762. package/src/keylessBackup/KeylessBackupPhoneCodeInput.test.tsx +256 -0
  763. package/src/keylessBackup/KeylessBackupPhoneCodeInput.tsx +257 -0
  764. package/src/keylessBackup/KeylessBackupPhoneInput.test.tsx +67 -0
  765. package/src/keylessBackup/KeylessBackupPhoneInput.tsx +203 -0
  766. package/src/keylessBackup/KeylessBackupProgress.test.tsx +371 -0
  767. package/src/keylessBackup/KeylessBackupProgress.tsx +495 -0
  768. package/src/keylessBackup/LinkPhoneNumber.test.tsx +57 -0
  769. package/src/keylessBackup/LinkPhoneNumber.tsx +107 -0
  770. package/src/keylessBackup/SignInWithEmail.test.tsx +271 -0
  771. package/src/keylessBackup/SignInWithEmail.tsx +348 -0
  772. package/src/keylessBackup/SmartphoneIcon.tsx +19 -0
  773. package/src/keylessBackup/WalletSecurityPrimer.test.tsx +31 -0
  774. package/src/keylessBackup/WalletSecurityPrimer.tsx +81 -0
  775. package/src/keylessBackup/encryption.test.ts +139 -0
  776. package/src/keylessBackup/encryption.ts +121 -0
  777. package/src/keylessBackup/hooks.ts +179 -0
  778. package/src/keylessBackup/index.test.ts +204 -0
  779. package/src/keylessBackup/index.ts +98 -0
  780. package/src/keylessBackup/keychain.test.ts +55 -0
  781. package/src/keylessBackup/keychain.ts +30 -0
  782. package/src/keylessBackup/saga.test.ts +427 -0
  783. package/src/keylessBackup/saga.ts +264 -0
  784. package/src/keylessBackup/selectors.ts +8 -0
  785. package/src/keylessBackup/slice.ts +108 -0
  786. package/src/keylessBackup/types.ts +25 -0
  787. package/src/keylessBackup/web3auth.test.ts +74 -0
  788. package/src/keylessBackup/web3auth.ts +54 -0
  789. package/src/language/Language.test.tsx +41 -0
  790. package/src/language/Language.tsx +99 -0
  791. package/src/localCurrency/SelectLocalCurrency.test.tsx +19 -0
  792. package/src/localCurrency/SelectLocalCurrency.tsx +83 -0
  793. package/src/localCurrency/actions.ts +49 -0
  794. package/src/localCurrency/consts.test.ts +9 -0
  795. package/src/localCurrency/consts.ts +97 -0
  796. package/src/localCurrency/convert.test.ts +30 -0
  797. package/src/localCurrency/convert.ts +66 -0
  798. package/src/localCurrency/hooks.test.tsx +146 -0
  799. package/src/localCurrency/hooks.ts +47 -0
  800. package/src/localCurrency/reducer.ts +59 -0
  801. package/src/localCurrency/saga.test.ts +34 -0
  802. package/src/localCurrency/saga.ts +61 -0
  803. package/src/localCurrency/selectors.test.ts +47 -0
  804. package/src/localCurrency/selectors.ts +66 -0
  805. package/src/localCurrency/types.ts +6 -0
  806. package/src/missingGlobals.ts +21 -0
  807. package/src/nameGenerator/index.test.ts +46 -0
  808. package/src/nameGenerator/index.ts +17 -0
  809. package/src/nameGenerator/names.ts +938 -0
  810. package/src/navigator/DemoModeAuthBlock.test.tsx +60 -0
  811. package/src/navigator/DemoModeAuthBlock.tsx +61 -0
  812. package/src/navigator/DemoModeChipIndicator.test.tsx +109 -0
  813. package/src/navigator/DemoModeChipIndicator.tsx +76 -0
  814. package/src/navigator/Headers.tsx +263 -0
  815. package/src/navigator/NavigationService.test.tsx +74 -0
  816. package/src/navigator/NavigationService.ts +244 -0
  817. package/src/navigator/Navigator.tsx +760 -0
  818. package/src/navigator/NavigatorWrapper.test.tsx +65 -0
  819. package/src/navigator/NavigatorWrapper.tsx +248 -0
  820. package/src/navigator/QRNavigator.test.tsx +61 -0
  821. package/src/navigator/QRNavigator.tsx +144 -0
  822. package/src/navigator/Screens.tsx +107 -0
  823. package/src/navigator/ScrollAwareHeader.tsx +57 -0
  824. package/src/navigator/SettingsMenu.test.tsx +253 -0
  825. package/src/navigator/SettingsMenu.tsx +353 -0
  826. package/src/navigator/TabNavigator.test.tsx +181 -0
  827. package/src/navigator/TabNavigator.tsx +142 -0
  828. package/src/navigator/TopBarButton.test.tsx +44 -0
  829. package/src/navigator/TopBarButton.tsx +88 -0
  830. package/src/navigator/TopBarIconButtonV2.test.tsx +17 -0
  831. package/src/navigator/TopBarIconButtonV2.tsx +85 -0
  832. package/src/navigator/initialRoute.test.tsx +32 -0
  833. package/src/navigator/initialRoute.tsx +29 -0
  834. package/src/navigator/types.tsx +346 -0
  835. package/src/networkInfo/actions.ts +28 -0
  836. package/src/networkInfo/reducer.ts +44 -0
  837. package/src/networkInfo/saga.test.ts +43 -0
  838. package/src/networkInfo/saga.ts +100 -0
  839. package/src/networkInfo/selectors.ts +4 -0
  840. package/src/nfts/NftMedia.test.tsx +114 -0
  841. package/src/nfts/NftMedia.tsx +205 -0
  842. package/src/nfts/NftsInfoCarousel.test.tsx +218 -0
  843. package/src/nfts/NftsInfoCarousel.tsx +344 -0
  844. package/src/nfts/NftsLoadError.test.tsx +37 -0
  845. package/src/nfts/NftsLoadError.tsx +111 -0
  846. package/src/nfts/saga.test.tsx +502 -0
  847. package/src/nfts/saga.ts +198 -0
  848. package/src/nfts/selectors.ts +13 -0
  849. package/src/nfts/slice.ts +45 -0
  850. package/src/nfts/types.ts +51 -0
  851. package/src/notifications/NotificationList.test.tsx +25 -0
  852. package/src/notifications/NotificationList.tsx +45 -0
  853. package/src/notifications/__snapshots__/NotificationList.test.tsx.snap +35 -0
  854. package/src/notifications/types.ts +31 -0
  855. package/src/onboarding/LanguageButton.tsx +26 -0
  856. package/src/onboarding/TopBarTextButtonOnboarding.test.tsx +22 -0
  857. package/src/onboarding/TopBarTextButtonOnboarding.tsx +17 -0
  858. package/src/onboarding/actions.ts +46 -0
  859. package/src/onboarding/registration/EnableBiometry.test.tsx +168 -0
  860. package/src/onboarding/registration/EnableBiometry.tsx +207 -0
  861. package/src/onboarding/registration/ImportSelect.test.tsx +54 -0
  862. package/src/onboarding/registration/ImportSelect.tsx +167 -0
  863. package/src/onboarding/registration/OnboardingRecoveryPhrase.test.tsx +83 -0
  864. package/src/onboarding/registration/OnboardingRecoveryPhrase.tsx +197 -0
  865. package/src/onboarding/registration/ProtectWallet.test.tsx +96 -0
  866. package/src/onboarding/registration/ProtectWallet.tsx +153 -0
  867. package/src/onboarding/registration/RegulatoryTerms.test.tsx +75 -0
  868. package/src/onboarding/registration/RegulatoryTerms.tsx +174 -0
  869. package/src/onboarding/registration/SelectCountry.test.tsx +51 -0
  870. package/src/onboarding/registration/SelectCountry.tsx +88 -0
  871. package/src/onboarding/registration/SelectCountryItem.tsx +59 -0
  872. package/src/onboarding/steps.test.ts +464 -0
  873. package/src/onboarding/steps.ts +303 -0
  874. package/src/onboarding/success/OnboardingSuccessScreen.tsx +64 -0
  875. package/src/onboarding/types.ts +14 -0
  876. package/src/onboarding/welcome/Welcome.test.tsx +234 -0
  877. package/src/onboarding/welcome/Welcome.tsx +182 -0
  878. package/src/pincode/PasswordCache.ts +71 -0
  879. package/src/pincode/Pincode.tsx +109 -0
  880. package/src/pincode/PincodeDisplay.tsx +92 -0
  881. package/src/pincode/PincodeEnter.test.tsx +85 -0
  882. package/src/pincode/PincodeEnter.tsx +103 -0
  883. package/src/pincode/PincodeLock.test.tsx +144 -0
  884. package/src/pincode/PincodeLock.tsx +121 -0
  885. package/src/pincode/PincodeSet.test.tsx +213 -0
  886. package/src/pincode/PincodeSet.tsx +263 -0
  887. package/src/pincode/authentication.test.ts +654 -0
  888. package/src/pincode/authentication.ts +425 -0
  889. package/src/points/ActivityCard.test.tsx +63 -0
  890. package/src/points/ActivityCard.tsx +101 -0
  891. package/src/points/ActivityCardSection.tsx +126 -0
  892. package/src/points/PointsDiscoverCard.test.tsx +106 -0
  893. package/src/points/PointsDiscoverCard.tsx +122 -0
  894. package/src/points/PointsHistoryBottomSheet.test.tsx +179 -0
  895. package/src/points/PointsHistoryBottomSheet.tsx +264 -0
  896. package/src/points/PointsHome.test.tsx +230 -0
  897. package/src/points/PointsHome.tsx +357 -0
  898. package/src/points/PointsIntro.test.tsx +67 -0
  899. package/src/points/PointsIntro.tsx +85 -0
  900. package/src/points/cardDefinitions.tsx +94 -0
  901. package/src/points/cardSort.test.ts +58 -0
  902. package/src/points/cardSort.ts +18 -0
  903. package/src/points/saga.test.ts +769 -0
  904. package/src/points/saga.ts +379 -0
  905. package/src/points/selectors.test.ts +73 -0
  906. package/src/points/selectors.ts +68 -0
  907. package/src/points/slice.test.ts +76 -0
  908. package/src/points/slice.ts +164 -0
  909. package/src/points/types.ts +94 -0
  910. package/src/positions/HooksPreviewModeBanner.test.tsx +56 -0
  911. package/src/positions/HooksPreviewModeBanner.tsx +69 -0
  912. package/src/positions/actions.ts +11 -0
  913. package/src/positions/getPositionBalanceUsd.ts +14 -0
  914. package/src/positions/saga.test.ts +468 -0
  915. package/src/positions/saga.ts +378 -0
  916. package/src/positions/selectors.test.ts +281 -0
  917. package/src/positions/selectors.ts +189 -0
  918. package/src/positions/slice.ts +219 -0
  919. package/src/positions/transactions.ts +21 -0
  920. package/src/positions/types.ts +137 -0
  921. package/src/priceHistory/PriceHistoryChart.test.tsx +200 -0
  922. package/src/priceHistory/PriceHistoryChart.tsx +345 -0
  923. package/src/priceHistory/__snapshots__/PriceHistoryChart.test.tsx.snap +419 -0
  924. package/src/priceHistory/saga.test.ts +120 -0
  925. package/src/priceHistory/saga.ts +62 -0
  926. package/src/priceHistory/selectors.test.ts +52 -0
  927. package/src/priceHistory/selectors.ts +17 -0
  928. package/src/priceHistory/slice.test.ts +94 -0
  929. package/src/priceHistory/slice.ts +68 -0
  930. package/src/public/components/Button.tsx +66 -0
  931. package/src/public/createApp.ts +67 -0
  932. package/src/public/getFees.test.ts +24 -0
  933. package/src/public/getFees.ts +8 -0
  934. package/src/public/getPublicClient.test.ts +19 -0
  935. package/src/public/getPublicClient.ts +25 -0
  936. package/src/public/getWalletClient.test.ts +30 -0
  937. package/src/public/getWalletClient.ts +32 -0
  938. package/src/public/hooks/toAsyncStatus.ts +19 -0
  939. package/src/public/hooks/usePrepareTransactions.test.ts +63 -0
  940. package/src/public/hooks/usePrepareTransactions.ts +15 -0
  941. package/src/public/hooks/usePublicClient.test.ts +24 -0
  942. package/src/public/hooks/usePublicClient.ts +7 -0
  943. package/src/public/hooks/useSendTransactions.test.ts +49 -0
  944. package/src/public/hooks/useSendTransactions.ts +15 -0
  945. package/src/public/hooks/useWallet.ts +52 -0
  946. package/src/public/hooks/useWalletClient.test.ts +35 -0
  947. package/src/public/hooks/useWalletClient.ts +24 -0
  948. package/src/public/index.ts +29 -0
  949. package/src/public/navigate.test.ts +168 -0
  950. package/src/public/navigate.ts +168 -0
  951. package/src/public/prepareTransactions.test.ts +76 -0
  952. package/src/public/prepareTransactions.ts +78 -0
  953. package/src/public/sendTransactions.test.ts +37 -0
  954. package/src/public/sendTransactions.ts +25 -0
  955. package/src/public/types.tsx +278 -0
  956. package/src/public/unlockAccount.test.ts +79 -0
  957. package/src/public/unlockAccount.ts +43 -0
  958. package/src/qrcode/NotAuthorizedView.test.tsx +11 -0
  959. package/src/qrcode/NotAuthorizedView.tsx +47 -0
  960. package/src/qrcode/QRCode.test.tsx +117 -0
  961. package/src/qrcode/QRCode.tsx +190 -0
  962. package/src/qrcode/QRScanner.tsx +249 -0
  963. package/src/qrcode/QRTabBar.tsx +137 -0
  964. package/src/qrcode/StyledQRCode.tsx +31 -0
  965. package/src/qrcode/StyledQRGen.tsx +26 -0
  966. package/src/qrcode/__snapshots__/NotAuthorizedView.test.tsx.snap +90 -0
  967. package/src/qrcode/schema.test.ts +121 -0
  968. package/src/qrcode/schema.ts +45 -0
  969. package/src/qrcode/utils.test.tsx +293 -0
  970. package/src/qrcode/utils.ts +230 -0
  971. package/src/recaptcha/RecaptchaService.ts +105 -0
  972. package/src/recaptcha/saga.ts +24 -0
  973. package/src/recipients/RecipientItemV2.test.tsx +153 -0
  974. package/src/recipients/RecipientItemV2.tsx +142 -0
  975. package/src/recipients/RecipientPickerV2.test.tsx +110 -0
  976. package/src/recipients/RecipientPickerV2.tsx +61 -0
  977. package/src/recipients/recipient.test.ts +113 -0
  978. package/src/recipients/recipient.ts +313 -0
  979. package/src/recipients/reducer.ts +107 -0
  980. package/src/recipients/resolve-id.ts +21 -0
  981. package/src/recipients/saga.ts +87 -0
  982. package/src/redux/apiReducersList.ts +11 -0
  983. package/src/redux/createMigrate.test.ts +113 -0
  984. package/src/redux/createMigrate.ts +46 -0
  985. package/src/redux/hooks.ts +7 -0
  986. package/src/redux/migrations.test.ts +1925 -0
  987. package/src/redux/migrations.ts +2069 -0
  988. package/src/redux/persist-helper.ts +14 -0
  989. package/src/redux/reducers.ts +29 -0
  990. package/src/redux/reducersForSchemaGeneration.ts +20 -0
  991. package/src/redux/reducersList.ts +57 -0
  992. package/src/redux/sagas-helpers.ts +29 -0
  993. package/src/redux/sagas.test.ts +19 -0
  994. package/src/redux/sagas.ts +155 -0
  995. package/src/redux/selectors.ts +3 -0
  996. package/src/redux/store.test.ts +391 -0
  997. package/src/redux/store.ts +151 -0
  998. package/src/send/EnterAmount.test.tsx +1030 -0
  999. package/src/send/EnterAmount.tsx +360 -0
  1000. package/src/send/EnterAmountOptions.tsx +170 -0
  1001. package/src/send/PasteAddressButton.tsx +81 -0
  1002. package/src/send/SelectRecipientButtons.test.tsx +256 -0
  1003. package/src/send/SelectRecipientButtons.tsx +202 -0
  1004. package/src/send/SendConfirmation.test.tsx +233 -0
  1005. package/src/send/SendConfirmation.tsx +317 -0
  1006. package/src/send/SendEnterAmount.test.tsx +235 -0
  1007. package/src/send/SendEnterAmount.tsx +123 -0
  1008. package/src/send/SendSelectRecipient.test.tsx +765 -0
  1009. package/src/send/SendSelectRecipient.tsx +504 -0
  1010. package/src/send/SendSelectRecipientSearchInput.tsx +72 -0
  1011. package/src/send/ValidateRecipientAccount.test.tsx +181 -0
  1012. package/src/send/ValidateRecipientAccount.tsx +387 -0
  1013. package/src/send/ValidateRecipientIntro.test.tsx +61 -0
  1014. package/src/send/ValidateRecipientIntro.tsx +136 -0
  1015. package/src/send/__snapshots__/ValidateRecipientAccount.test.tsx.snap +777 -0
  1016. package/src/send/actions.ts +142 -0
  1017. package/src/send/hooks.test.tsx +371 -0
  1018. package/src/send/hooks.ts +445 -0
  1019. package/src/send/reducers.ts +90 -0
  1020. package/src/send/saga.test.ts +247 -0
  1021. package/src/send/saga.ts +176 -0
  1022. package/src/send/selectors.ts +22 -0
  1023. package/src/send/types.ts +18 -0
  1024. package/src/send/useFetchRecipientVerificationStatus.ts +67 -0
  1025. package/src/send/usePrepareSendTransactions.test.ts +135 -0
  1026. package/src/send/usePrepareSendTransactions.ts +69 -0
  1027. package/src/send/utils.test.ts +361 -0
  1028. package/src/send/utils.ts +116 -0
  1029. package/src/sendCalls/constants.ts +11 -0
  1030. package/src/sendCalls/saga.test.ts +31 -0
  1031. package/src/sendCalls/saga.ts +15 -0
  1032. package/src/sendCalls/selectors.test.ts +40 -0
  1033. package/src/sendCalls/selectors.ts +8 -0
  1034. package/src/sendCalls/slice.test.ts +85 -0
  1035. package/src/sendCalls/slice.ts +72 -0
  1036. package/src/sentry/Sentry.ts +75 -0
  1037. package/src/sentry/SentrySpanHub.ts +27 -0
  1038. package/src/sentry/SentrySpans.tsx +57 -0
  1039. package/src/sentry/actions.ts +11 -0
  1040. package/src/sentry/saga.ts +8 -0
  1041. package/src/shared/DisconnectBanner.test.tsx +25 -0
  1042. package/src/shared/DisconnectBanner.tsx +81 -0
  1043. package/src/shared/__snapshots__/DisconnectBanner.test.tsx.snap +29 -0
  1044. package/src/shared/conts.ts +16 -0
  1045. package/src/statsig/client.test.ts +62 -0
  1046. package/src/statsig/client.ts +97 -0
  1047. package/src/statsig/constants.ts +177 -0
  1048. package/src/statsig/index.test.ts +351 -0
  1049. package/src/statsig/index.ts +186 -0
  1050. package/src/statsig/selector.ts +17 -0
  1051. package/src/statsig/types.ts +52 -0
  1052. package/src/storage/keychain.tsx +92 -0
  1053. package/src/styles/accessibility.ts +7 -0
  1054. package/src/styles/appTheme.ts +13 -0
  1055. package/src/styles/colors.tsx +78 -0
  1056. package/src/styles/fonts.tsx +143 -0
  1057. package/src/styles/hapticFeedback.ts +27 -0
  1058. package/src/styles/progressDots.ts +23 -0
  1059. package/src/styles/styles.ts +67 -0
  1060. package/src/styles/variables.tsx +16 -0
  1061. package/src/swap/SwapAmountInput.tsx +228 -0
  1062. package/src/swap/SwapScreen.test.tsx +1927 -0
  1063. package/src/swap/SwapScreen.tsx +1156 -0
  1064. package/src/swap/SwapScreenV2.test.tsx +2180 -0
  1065. package/src/swap/SwapScreenV2.tsx +1201 -0
  1066. package/src/swap/SwapTransactionDetails.test.tsx +217 -0
  1067. package/src/swap/SwapTransactionDetails.tsx +274 -0
  1068. package/src/swap/UnfavorableRateBottomSheet.test.tsx +150 -0
  1069. package/src/swap/UnfavorableRateBottomSheet.tsx +288 -0
  1070. package/src/swap/getCrossChainFee.ts +64 -0
  1071. package/src/swap/getSwapTxsAnalyticsProperties.tsx +49 -0
  1072. package/src/swap/saga.test.ts +863 -0
  1073. package/src/swap/saga.ts +324 -0
  1074. package/src/swap/selectors.ts +5 -0
  1075. package/src/swap/slice.test.ts +133 -0
  1076. package/src/swap/slice.ts +93 -0
  1077. package/src/swap/types.ts +98 -0
  1078. package/src/swap/useFilterChips.ts +69 -0
  1079. package/src/swap/useSwapQuote.ts +292 -0
  1080. package/src/tokens/AssetList.test.tsx +270 -0
  1081. package/src/tokens/AssetList.tsx +388 -0
  1082. package/src/tokens/AssetTabBar.test.tsx +130 -0
  1083. package/src/tokens/AssetTabBar.tsx +106 -0
  1084. package/src/tokens/PasteButton.test.tsx +30 -0
  1085. package/src/tokens/PasteButton.tsx +34 -0
  1086. package/src/tokens/PositionIcon.tsx +22 -0
  1087. package/src/tokens/PositionItem.test.tsx +132 -0
  1088. package/src/tokens/PositionItem.tsx +131 -0
  1089. package/src/tokens/TabWallet.test.tsx +386 -0
  1090. package/src/tokens/TabWallet.tsx +237 -0
  1091. package/src/tokens/TokenBalanceItem.test.tsx +119 -0
  1092. package/src/tokens/TokenBalanceItem.tsx +143 -0
  1093. package/src/tokens/TokenDetails.test.tsx +476 -0
  1094. package/src/tokens/TokenDetails.tsx +391 -0
  1095. package/src/tokens/TokenDetailsMoreActions.test.tsx +120 -0
  1096. package/src/tokens/TokenDetailsMoreActions.tsx +87 -0
  1097. package/src/tokens/TokenImport.test.tsx +376 -0
  1098. package/src/tokens/TokenImport.tsx +381 -0
  1099. package/src/tokens/hooks.test.tsx +419 -0
  1100. package/src/tokens/hooks.ts +164 -0
  1101. package/src/tokens/saga.test.ts +527 -0
  1102. package/src/tokens/saga.ts +248 -0
  1103. package/src/tokens/selectors.test.ts +888 -0
  1104. package/src/tokens/selectors.ts +516 -0
  1105. package/src/tokens/slice.ts +173 -0
  1106. package/src/tokens/types.ts +29 -0
  1107. package/src/tokens/utils.test.tsx +330 -0
  1108. package/src/tokens/utils.ts +218 -0
  1109. package/src/transactions/NoActivity.test.tsx +30 -0
  1110. package/src/transactions/NoActivity.tsx +73 -0
  1111. package/src/transactions/TransferAvatars.tsx +39 -0
  1112. package/src/transactions/UserSection.tsx +133 -0
  1113. package/src/transactions/api.ts +67 -0
  1114. package/src/transactions/apiTestHelpers.ts +55 -0
  1115. package/src/transactions/feed/ClaimRewardFeedItem.test.tsx +164 -0
  1116. package/src/transactions/feed/ClaimRewardFeedItem.tsx +142 -0
  1117. package/src/transactions/feed/DepositOrWithdrawFeedItem.test.tsx +138 -0
  1118. package/src/transactions/feed/DepositOrWithdrawFeedItem.tsx +178 -0
  1119. package/src/transactions/feed/EarnFeedItem.test.tsx +189 -0
  1120. package/src/transactions/feed/EarnFeedItem.tsx +190 -0
  1121. package/src/transactions/feed/NftFeedItem.test.tsx +102 -0
  1122. package/src/transactions/feed/NftFeedItem.tsx +99 -0
  1123. package/src/transactions/feed/SwapFeedItem.test.tsx +137 -0
  1124. package/src/transactions/feed/SwapFeedItem.tsx +128 -0
  1125. package/src/transactions/feed/TokenApprovalFeedItem.test.tsx +37 -0
  1126. package/src/transactions/feed/TokenApprovalFeedItem.tsx +59 -0
  1127. package/src/transactions/feed/TransactionDetails.tsx +160 -0
  1128. package/src/transactions/feed/TransactionDetailsScreen.test.tsx +1228 -0
  1129. package/src/transactions/feed/TransactionDetailsScreen.tsx +157 -0
  1130. package/src/transactions/feed/TransactionFeed.test.tsx +474 -0
  1131. package/src/transactions/feed/TransactionFeed.tsx +172 -0
  1132. package/src/transactions/feed/TransactionFeedItemImage.test.tsx +66 -0
  1133. package/src/transactions/feed/TransactionFeedItemImage.tsx +116 -0
  1134. package/src/transactions/feed/TransactionFeedV2.test.tsx +576 -0
  1135. package/src/transactions/feed/TransactionFeedV2.tsx +504 -0
  1136. package/src/transactions/feed/TransactionPrimaryAction.test.tsx +62 -0
  1137. package/src/transactions/feed/TransactionPrimaryAction.tsx +83 -0
  1138. package/src/transactions/feed/TransactionStatusIndicator.test.tsx +15 -0
  1139. package/src/transactions/feed/TransactionStatusIndicator.tsx +63 -0
  1140. package/src/transactions/feed/TransferFeedItem.test.tsx +579 -0
  1141. package/src/transactions/feed/TransferFeedItem.tsx +148 -0
  1142. package/src/transactions/feed/detailContent/ClaimRewardContent.tsx +84 -0
  1143. package/src/transactions/feed/detailContent/DepositOrWithdrawContent.tsx +169 -0
  1144. package/src/transactions/feed/detailContent/EarnContent.tsx +259 -0
  1145. package/src/transactions/feed/detailContent/FeeRowItem.tsx +90 -0
  1146. package/src/transactions/feed/detailContent/RewardReceivedContent.tsx +46 -0
  1147. package/src/transactions/feed/detailContent/SwapContent.tsx +127 -0
  1148. package/src/transactions/feed/detailContent/TokenApprovalDetails.tsx +59 -0
  1149. package/src/transactions/feed/detailContent/TransferReceivedContent.tsx +73 -0
  1150. package/src/transactions/feed/detailContent/TransferSentContent.tsx +117 -0
  1151. package/src/transactions/feed/queryHelper.test.ts +229 -0
  1152. package/src/transactions/feed/queryHelper.ts +941 -0
  1153. package/src/transactions/saga.test.ts +482 -0
  1154. package/src/transactions/saga.ts +322 -0
  1155. package/src/transactions/selectors.ts +120 -0
  1156. package/src/transactions/send.test.ts +29 -0
  1157. package/src/transactions/send.ts +51 -0
  1158. package/src/transactions/slice.test.ts +372 -0
  1159. package/src/transactions/slice.ts +262 -0
  1160. package/src/transactions/transferFeedUtils.ts +225 -0
  1161. package/src/transactions/types.ts +355 -0
  1162. package/src/transactions/utils.test.ts +98 -0
  1163. package/src/transactions/utils.ts +122 -0
  1164. package/src/utils/AppRestart.ts +12 -0
  1165. package/src/utils/Countries.test.ts +180 -0
  1166. package/src/utils/Countries.ts +121 -0
  1167. package/src/utils/IosVersionUtils.ts +6 -0
  1168. package/src/utils/Logger.test.ts +113 -0
  1169. package/src/utils/Logger.ts +304 -0
  1170. package/src/utils/LoggerLevels.ts +6 -0
  1171. package/src/utils/account.test.ts +390 -0
  1172. package/src/utils/account.ts +497 -0
  1173. package/src/utils/accountChecker.test.ts +75 -0
  1174. package/src/utils/accountChecker.ts +77 -0
  1175. package/src/utils/address.test.ts +62 -0
  1176. package/src/utils/address.ts +34 -0
  1177. package/src/utils/aes.test.ts +36 -0
  1178. package/src/utils/aes.ts +46 -0
  1179. package/src/utils/contacts.ts +78 -0
  1180. package/src/utils/contentTranslations.ts +18 -0
  1181. package/src/utils/country.json +257 -0
  1182. package/src/utils/countryFeatures.ts +21 -0
  1183. package/src/utils/currencies.ts +72 -0
  1184. package/src/utils/displayFormatting.ts +11 -0
  1185. package/src/utils/ensureError.test.ts +32 -0
  1186. package/src/utils/ensureError.ts +13 -0
  1187. package/src/utils/fetchWithTimeout.test.ts +55 -0
  1188. package/src/utils/fetchWithTimeout.ts +15 -0
  1189. package/src/utils/formatting.test.ts +93 -0
  1190. package/src/utils/formatting.ts +107 -0
  1191. package/src/utils/getCountryEmoji.ts +28 -0
  1192. package/src/utils/getPhoneHash.ts +29 -0
  1193. package/src/utils/gql.ts +8 -0
  1194. package/src/utils/identifier.ts +81 -0
  1195. package/src/utils/inputValidation.test.ts +53 -0
  1196. package/src/utils/inputValidation.ts +76 -0
  1197. package/src/utils/io.ts +39 -0
  1198. package/src/utils/linking.ts +42 -0
  1199. package/src/utils/moneyAmount.ts +16 -0
  1200. package/src/utils/parsing.test.ts +30 -0
  1201. package/src/utils/parsing.ts +20 -0
  1202. package/src/utils/phoneNumber.test.ts +236 -0
  1203. package/src/utils/phoneNumbers.ts +240 -0
  1204. package/src/utils/random.test.ts +53 -0
  1205. package/src/utils/random.ts +48 -0
  1206. package/src/utils/safely.test.ts +101 -0
  1207. package/src/utils/safely.ts +30 -0
  1208. package/src/utils/sleep.ts +3 -0
  1209. package/src/utils/string.ts +8 -0
  1210. package/src/utils/stylize.ts +30 -0
  1211. package/src/utils/time.test.ts +76 -0
  1212. package/src/utils/time.ts +99 -0
  1213. package/src/utils/typescript.ts +38 -0
  1214. package/src/utils/useBackHandler.ts +10 -0
  1215. package/src/utils/useClipboard.ts +56 -0
  1216. package/src/utils/versionCheck.test.ts +47 -0
  1217. package/src/utils/versionCheck.ts +35 -0
  1218. package/src/verify/ResendButtonWithDelay.tsx +56 -0
  1219. package/src/verify/VerificationCodeInput.test.tsx +87 -0
  1220. package/src/verify/VerificationCodeInput.tsx +103 -0
  1221. package/src/verify/VerificationCodeInputScreen.test.tsx +364 -0
  1222. package/src/verify/VerificationCodeInputScreen.tsx +138 -0
  1223. package/src/verify/VerificationStartScreen.test.tsx +218 -0
  1224. package/src/verify/VerificationStartScreen.tsx +311 -0
  1225. package/src/verify/hooks.test.tsx +85 -0
  1226. package/src/verify/hooks.ts +261 -0
  1227. package/src/viem/estimateFeesPerGas.test.ts +129 -0
  1228. package/src/viem/estimateFeesPerGas.ts +70 -0
  1229. package/src/viem/getLockableWallet.test.ts +263 -0
  1230. package/src/viem/getLockableWallet.ts +120 -0
  1231. package/src/viem/index.ts +86 -0
  1232. package/src/viem/keychainAccountToAccount.test.ts +55 -0
  1233. package/src/viem/keychainAccountToAccount.ts +58 -0
  1234. package/src/viem/prepareTransactions.test.ts +1668 -0
  1235. package/src/viem/prepareTransactions.ts +741 -0
  1236. package/src/viem/preparedTransactionSerialization.test.ts +192 -0
  1237. package/src/viem/preparedTransactionSerialization.ts +100 -0
  1238. package/src/viem/saga.test.ts +227 -0
  1239. package/src/viem/saga.ts +118 -0
  1240. package/src/walletConnect/actions.test.ts +94 -0
  1241. package/src/walletConnect/actions.ts +232 -0
  1242. package/src/walletConnect/analytics.ts +58 -0
  1243. package/src/walletConnect/capabilities.ts +175 -0
  1244. package/src/walletConnect/constants.ts +157 -0
  1245. package/src/walletConnect/reducer.ts +105 -0
  1246. package/src/walletConnect/request.test.ts +698 -0
  1247. package/src/walletConnect/request.ts +225 -0
  1248. package/src/walletConnect/saga.test.ts +1875 -0
  1249. package/src/walletConnect/saga.ts +1159 -0
  1250. package/src/walletConnect/screens/ActionRequest.test.tsx +727 -0
  1251. package/src/walletConnect/screens/ActionRequest.tsx +227 -0
  1252. package/src/walletConnect/screens/ActionRequestPayload.tsx +84 -0
  1253. package/src/walletConnect/screens/ConnectionTimedOut.tsx +34 -0
  1254. package/src/walletConnect/screens/DappsDisclaimer.tsx +31 -0
  1255. package/src/walletConnect/screens/EstimatedNetworkFee.test.tsx +88 -0
  1256. package/src/walletConnect/screens/EstimatedNetworkFee.tsx +134 -0
  1257. package/src/walletConnect/screens/Logos.tsx +89 -0
  1258. package/src/walletConnect/screens/RequestContent.tsx +224 -0
  1259. package/src/walletConnect/screens/SessionRequest.test.tsx +274 -0
  1260. package/src/walletConnect/screens/SessionRequest.tsx +221 -0
  1261. package/src/walletConnect/screens/Sessions.tsx +142 -0
  1262. package/src/walletConnect/screens/WalletConnectRequest.tsx +63 -0
  1263. package/src/walletConnect/screens/useIsDappListed.test.tsx +51 -0
  1264. package/src/walletConnect/screens/useIsDappListed.ts +20 -0
  1265. package/src/walletConnect/selectors.ts +25 -0
  1266. package/src/walletConnect/types.ts +99 -0
  1267. package/src/walletConnect/walletConnect.ts +87 -0
  1268. package/src/web3/KeychainAccounts.test.ts +326 -0
  1269. package/src/web3/KeychainAccounts.ts +309 -0
  1270. package/src/web3/actions.ts +30 -0
  1271. package/src/web3/consts.ts +8 -0
  1272. package/src/web3/contracts.test.ts +115 -0
  1273. package/src/web3/contracts.ts +74 -0
  1274. package/src/web3/networkConfig.test.ts +18 -0
  1275. package/src/web3/networkConfig.ts +621 -0
  1276. package/src/web3/reducer.ts +39 -0
  1277. package/src/web3/saga.test.ts +200 -0
  1278. package/src/web3/saga.ts +229 -0
  1279. package/src/web3/selectors.ts +47 -0
  1280. package/src/web3/utils.test.ts +12 -0
  1281. package/src/web3/utils.ts +11 -0
  1282. package/src/webview/WebViewAndroidBottomSheet.test.tsx +58 -0
  1283. package/src/webview/WebViewAndroidBottomSheet.tsx +83 -0
  1284. package/src/webview/WebViewScreen.test.tsx +84 -0
  1285. package/src/webview/WebViewScreen.tsx +296 -0
  1286. package/src/webview/__snapshots__/WebViewAndroidBottomSheet.test.tsx.snap +249 -0
  1287. package/tsconfig.base.json +5 -0
  1288. package/tsconfig.json +30 -0
@@ -0,0 +1,2998 @@
1
+ {
2
+ "invite": "Invite",
3
+ "celoRewards": "Celo Rewards",
4
+ "languageSettings": "Language",
5
+ "localCurrencySetting": "Currency",
6
+ "licenses": "Licenses",
7
+ "removeAccountTitle": "Reset {{appName}}",
8
+ "removeAccountDetails": "Resetting will remove your account from this device. Your funds will remain in the account, but will only be accessible with your Recovery Phrase",
9
+ "deleteAccountTitle": "Delete {{appName}}",
10
+ "deleteAccountDetails": "Deleting your account will remove it from {{appName}}. Your funds will remain in the account, but will only be accessible with your Recovery Phrase",
11
+ "deleteAccountWarning": {
12
+ "title": "Are you sure?",
13
+ "description": "Deleting your account from {{appName}} also removes any linked phone number. Your funds will remain in the account, but will only be accessible with your Recovery Phrase.",
14
+ "buttonLabel": "Continue",
15
+ "buttonLabelRevokingPhoneNumber": "Unlinking phone number..."
16
+ },
17
+ "legal": "Legal",
18
+ "appPreferences": "App Preferences",
19
+ "preferences": "Preferences",
20
+ "security": "Security",
21
+ "securityPrivacy": "Security & Privacy",
22
+ "changePin": "Change PIN",
23
+ "pinChanged": "PIN changed",
24
+ "pinChangeFailed": "Changing the PIN failed",
25
+ "requirePinOnAppOpen": "Require PIN on App Open",
26
+ "connectedApplications": "Connected Dapps",
27
+ "analytics": "Analytics",
28
+ "shareAnalytics": "Share Analytics",
29
+ "hapticFeedback": "Haptic Feedback",
30
+ "shareAnalytics_detail": "We collect anonymized data about how you use {{appName}} to help improve the application for everyone.",
31
+ "dataSaver": "Data Saver",
32
+ "enableDataSaver": "Enable Data Saver",
33
+ "dataSaverDetail": "Data Saver mode allows you to communicate with the network through a trusted node. You can always change this mode in app settings.",
34
+ "keylessBackupSetupTitle": "Create Login",
35
+ "keylessBackupSettingsTitle": "Email & Phone Backup",
36
+ "keylessBackupSettingsDeleteError": "Your backup was not able to be deleted, please wait & try again later.",
37
+ "setup": "Set Up",
38
+ "restartModalSwitchOff": {
39
+ "header": "Restart To Switch Off Data Saver",
40
+ "body": "To switch Data Saver on and off repeatedly, you will need to restart the app and return to this screen.",
41
+ "restart": "Restart to Switch"
42
+ },
43
+ "revokePhoneNumber": {
44
+ "title": "Unlink Phone Number",
45
+ "bottomSheetTitle": "Unlink Phone Number",
46
+ "description": "Unlinking will remove the phone number linked to your wallet. You can add a new phone number later.",
47
+ "confirmButton": "Unlink now",
48
+ "revokeSuccess": "Your phone number has been unlinked",
49
+ "revokeError": "Could not unlink phone number, please try again later.",
50
+ "addNewNumberButton": "Add phone number"
51
+ },
52
+ "promptFornoModal": {
53
+ "header": "Switch Connection Mode?",
54
+ "body": "We’ve noticed you’re having some trouble connecting. We recommend enabling Data Saver mode to allow you to keep using {{appName}} with intermittent connection.",
55
+ "switchToDataSaver": "Switch To Data Saver"
56
+ },
57
+ "accountKeyModal": {
58
+ "header": "Without your Recovery Phrase you will lose access to your funds forever",
59
+ "body1": "In order to reset {{appName}}, you will need to confirm you've written your Recovery Phrase.",
60
+ "body2": "Nobody, not even {{appName}}, can recover your account without your Phrase."
61
+ },
62
+ "promptConfirmRemovalModal": {
63
+ "header": "Are you sure you want to proceed?",
64
+ "body": "You are about to erase your wallet from this device. This step is final and cannot be reversed. There is no way to recover your Recovery Phrase if you haven't written it down.",
65
+ "resetNow": "Continue"
66
+ },
67
+ "protectWallet": {
68
+ "title": "Protect Your Wallet",
69
+ "subtitle": "Protect your wallet",
70
+ "body": "If your phone is lost or stolen, your 12 word recovery phrase is the only way you can access your funds.",
71
+ "recoveryPhrase": {
72
+ "title": "Use Recovery Phrase",
73
+ "subtitle": "Write down your recovery phrase"
74
+ }
75
+ },
76
+ "recoveryPhrase": {
77
+ "title": "Your recovery phrase",
78
+ "titleV1_90": "Your Recovery Phrase",
79
+ "body": "Write these 12 words down somewhere safe, where it cannot be stolen or damaged.",
80
+ "bodyV1_90": "If you lose your recovery phrase, you will lose access to all funds held in {{appName}}.",
81
+ "continue": "I've saved it",
82
+ "copy": "Copy to clipboard",
83
+ "mnemonicCopied": "Recovery phrase copied to clipboard",
84
+ "bottomSheet": {
85
+ "title": "How to save a recovery phrase",
86
+ "writeDownPhrase": "Writing down your recovery phrase with a pen, and storing it in a safe place is one of the most secure ways to protect your wallet.",
87
+ "phraseLocation": "An ideal place might be where you store other important documents & materials for safekeeping, that is not easily stolen and easy to retrieve. It's up to you!"
88
+ }
89
+ },
90
+ "walletSecurityPrimer": {
91
+ "title": "Keep your wallet safe",
92
+ "description": "Only you can access your wallet. If your phone is lost or stolen, {{appName}} cannot recover it for you.\n\nYou’ll need to set up a method to keep your wallet safe and protect your funds."
93
+ },
94
+ "keylessBackupIntro": {
95
+ "emailAddress": "Email Address",
96
+ "phoneNumber": "Phone Number",
97
+ "setup": {
98
+ "title": "Set Up Wallet Backup",
99
+ "description": "You'll use the following to set up your email & phone number backup",
100
+ "useRecoveryPhrase": "Use a recovery phrase instead",
101
+ "reminder": "<0>Remember</0>, this information is the only way to access your wallet if your device is lost or stolen. {{appName}} does not store your email or phone number. Keep it safe!"
102
+ },
103
+ "restore": {
104
+ "description": "Make sure you have the following available to restore your wallet.",
105
+ "reminder": "<0>Remember</0>, you need access to the same email & phone number you used when you backed up"
106
+ }
107
+ },
108
+ "signInWithEmail": {
109
+ "title": "Sign in with email",
110
+ "subtitle": "Sign in with your email to set it up as a backup. You will be prompted to sign in again if you ever lose your wallet.",
111
+ "subtitleRestore": "Sign in with the email you used to set up your wallet backup.",
112
+ "google": "Sign in with Google",
113
+ "apple": "Sign in with Apple",
114
+ "signInAnotherWay": "Sign in another way",
115
+ "bottomSheet": {
116
+ "title": "Save your recovery phrase to create a wallet",
117
+ "description": "We’re going to be supporting other email providers soon, but in the meanwhile you’ll have to save your recovery phrase to finish creating a wallet.",
118
+ "continue": "Continue",
119
+ "skip": "Skip (not recommended)"
120
+ }
121
+ },
122
+ "keylessBackupPhoneInput": {
123
+ "setup": {
124
+ "title": "Next, add your phone number",
125
+ "subtitle": "You’ll need to use this phone number to restore if you ever lose your wallet.\n\nWe’ll send you a code to verify that this number is yours."
126
+ },
127
+ "restore": {
128
+ "title": "Verify your phone number",
129
+ "subtitle": "Enter the phone number you previously used to set up backup.\n\nWe’ll send you a code to verify that this number is yours."
130
+ }
131
+ },
132
+ "keylessBackupStatus": {
133
+ "setup": {
134
+ "inProgress": {
135
+ "title": "Backup in progress..."
136
+ },
137
+ "completed": {
138
+ "title": "Backup complete",
139
+ "body": "You are now able to recover your wallet with your email address and phone number."
140
+ },
141
+ "failed": {
142
+ "title": "Backup unavailable",
143
+ "body": "You can set up wallet backup later or protect your account now by saving your recovery phrase.",
144
+ "later": "I'll set up backup later",
145
+ "manual": "Save recovery phrase",
146
+ "skip": "Skip (not recommended)"
147
+ }
148
+ },
149
+ "restore": {
150
+ "inProgress": {
151
+ "title": "Restoring your wallet"
152
+ },
153
+ "completed": {
154
+ "title": "Your wallet has been restored!",
155
+ "bodyZeroBalance": "You can add funds to your wallet once you are finished setting up.",
156
+ "bodyBalance": "You have a balance of <0></0>"
157
+ },
158
+ "failed": {
159
+ "title": "Your wallet was not restored",
160
+ "body": "There was a technical issue in trying to restore your wallet. Please contact support for more information.",
161
+ "tryAgain": "Try Again",
162
+ "createNewWallet": "Create new wallet",
163
+ "help": "Help"
164
+ },
165
+ "notFound": {
166
+ "title": "Wallet not found",
167
+ "body": "To restore your wallet, use the <0>same email address & phone number</0> you used when you set up.\n\nYou can also restore your wallet with your recovery phrase.",
168
+ "tryAgain": "Try Again",
169
+ "createNewWallet": "Create new wallet"
170
+ }
171
+ }
172
+ },
173
+ "testFaqLink": "{{appName}} FAQ",
174
+ "termsOfServiceLink": "Terms of Service",
175
+ "privacyPolicy": "Privacy Policy",
176
+ "editProfile": "Edit Profile",
177
+ "profileName": "Profile Name",
178
+ "profile": "Profile",
179
+ "confirmNumber": "Connect Phone Number",
180
+ "cancel": "Cancel",
181
+ "changeProfilePhoto": "Change Profile Photo",
182
+ "name": "Name",
183
+ "editName": "Edit Name",
184
+ "submit": "Submit",
185
+ "selectLanguage": "Select Language",
186
+ "selectCurrency": "Select Currency",
187
+ "continue": "Continue",
188
+ "yourName": "Your Name",
189
+ "version": "Version {{appVersion}}",
190
+ "appVersion": "Version",
191
+ "addressCopied": "Address copied to clipboard",
192
+ "support": "Support",
193
+ "contact": "Contact",
194
+ "faq": "Frequently Asked Questions",
195
+ "raiseLimit": "Raise Account Send Limit",
196
+ "forum": "Forum",
197
+ "contactText": "Can’t find what you’re looking for?",
198
+ "contactMessagePlaceholder": "Please type your message here...",
199
+ "attachLogs": "Attach logs",
200
+ "supportLegalCheckbox": "By submitting, I agree to share the above information and any attached application log data with {{appName}} Support.",
201
+ "contactSuccess": "Your issue has been successfully reported! Expect an email response soon!",
202
+ "namePictureSaved": "Your name and picture were saved successfully.",
203
+ "nameSaved": "Your name was saved successfully.",
204
+ "addPhoto": "Add Photo",
205
+ "chooseFromLibrary": "Choose from Library",
206
+ "takePhoto": "Take Photo",
207
+ "removePhoto": "Remove Photo",
208
+ "applicationCompleted": "Completed",
209
+ "applicationCompletedDescription": "Your application was accepted. You are now able to send an unlimited amount daily.",
210
+ "raiseLimitBegin": "Begin Identity Verification",
211
+ "storeRecoveryTitle": "We need you to setup your account again",
212
+ "storeRecoveryBody": "There’s been an error. We’re aware of the issue and working to fix it. In the meantime, you will need to go through the setup process again.",
213
+ "storeRecoveryButton": "Restore Account",
214
+ "havingTrouble": "Having Trouble?",
215
+ "shakeForSupport": "This menu appears when you shake your device.",
216
+ "contactSupport": "Contact Support",
217
+ "tapToCopy": "Tap to Copy",
218
+ "headerTitle": "Recovery Phrase",
219
+ "introBackUpPhrase": "Back Up Recovery Phrase",
220
+ "introCompleteQuiz": "Complete our backup quiz to verify that your wallet can be recovered.\n\nIf you wrote it down incorrectly, you won’t be able to access your wallet if anything happens to your device.",
221
+ "postSetupTitle": "Your Recovery Phrase",
222
+ "postSetupBody": "If you lose your Recovery Phrase, you will lose access to all of your assets on {{appName}}. Nobody, not even {{appName}}, will be able to help you recover your account without your Recovery Phrase. Store it in a safe place and do not share it.",
223
+ "postSetupCTA": "Learn about your Recovery Phrase",
224
+ "failedFetchMnemonic": "Failed to fetch your Recovery Phrase",
225
+ "backupAndRecovery": "Backup and Recovery",
226
+ "writeDownKey": "Please write down your Phrase",
227
+ "writeDownKeyExperimental": "Please write down your phrase.",
228
+ "completeEducation": "I Understand",
229
+ "yourAccountKey": "Your Recovery Phrase",
230
+ "backupKeyNotification2": "Keep your funds safe. Back up your Recovery Phrase now.",
231
+ "keylessBackupCTA": "Back up now",
232
+ "keylessBackupNotification": "Set up your email & phone number to back up your seed phrase",
233
+ "backupKeyCTA": "Finish Backup Now",
234
+ "backupKeySummary": "Find a private place and write down your Recovery Phrase. Please store it somewhere safe. Do not save it in your phone.",
235
+ "backupKeyWarning": "If you lose your recovery phrase, you will lose access to all funds held in {{appName}}.",
236
+ "copied": "Phrase copied to clipboard",
237
+ "moreInfo": "More Info",
238
+ "savedConfirmation": "Yes, I have written down my Phrase.",
239
+ "backupQuizWordCount": "What's the <0>{{ordinal}}</0> word of your Recovery Phrase?",
240
+ "backupQuizWordCountV1_83": "What's the <0>{{wordNumber}}</0> word of your Recovery Phrase?",
241
+ "importBackupFailed": "Importing Wallet Failed",
242
+ "backupQuizFailed": "The Recovery Phrase you entered is incorrect. Please try again.",
243
+ "invalidBackupPhrase": "Recovery Phrase is not valid",
244
+ "invalidWordsInBackupPhrase": "Some words in the Recovery Phrase are not valid: {{ invalidWords }}",
245
+ "backupComplete": {
246
+ "header": "Backup Complete",
247
+ "0": "Success!",
248
+ "1": "Next, you can set up Safeguards.",
249
+ "2": "You’re all set!"
250
+ },
251
+ "cancelDialog": {
252
+ "title": "Finish setting up your Recovery Phrase",
253
+ "body": "Your Recovery Phrase is extremely important. Without a Phrase, you can lose access to your wallet forever.\nYou will be blocked from sending any transactions until you finish setting up your Recovery Phrase.",
254
+ "action": "Complete Now",
255
+ "secondary": "Set Up Later"
256
+ },
257
+ "backupPhrasePlaceholder": "horse leopard dog monkey shark tiger lemur whale squid wolf squirrel mouse lion elephant cat shrimp bear penguin deer turtle fox zebra goat giraffe",
258
+ "guide": [
259
+ {
260
+ "title": "Your Recovery Phrase is a special kind of password",
261
+ "text": "Your Recovery Phrase is the one and only way to access your account."
262
+ },
263
+ {
264
+ "title": "Without your Recovery Phrase, you can lose access forever",
265
+ "text": "If you lose your phone, you must have your Recovery Phrase to get your account back. Nobody, not even {{appName}}, will be able to recover your funds without it."
266
+ },
267
+ {
268
+ "title": "Write it down",
269
+ "text": "Write down your Recovery Phrase and store it in a safe place. Do not save it in your phone."
270
+ },
271
+ {
272
+ "title": "Keep your Phrase private",
273
+ "text": "Anyone with your Phrase will have access to your account and all of its funds. Don’t share it with others."
274
+ }
275
+ ],
276
+ "consumerIncentivesTitle": "Supercharge is ending",
277
+ "consumerIncentivesSummary": "But more rewards are headed your way. Until May 28, get {{percent}}% annual rewards on your highest stablecoin balance (cUSD, cEUR, or cREAL). Here's how it works:",
278
+ "earnWeekly": {
279
+ "header": "Connect your phone number",
280
+ "text": "Tap Connect Number if you haven't connected it yet."
281
+ },
282
+ "noMinCommitment": {
283
+ "header": "Add a minimum balance",
284
+ "earningText": "Receive rewards on 10-1000 cUSD, 10-1000 cEUR, or 50-6000 cREAL.",
285
+ "connectText": "Just have a balance of at least {{minBalance}} {{currency}} and connect your phone number to start getting rewarded."
286
+ },
287
+ "saveMoreEarnMore": {
288
+ "header": "Set up your Recovery Phrase",
289
+ "text": "This will ensure your rewards are safe and in your control."
290
+ },
291
+ "conclusion": "It’s that simple. Supercharge your crypto today!",
292
+ "superchargeTitle": "Supercharge is ending",
293
+ "superchargeDescription": "But more rewards are headed your way. Until May 28, get {{apy}}% annual rewards on your highest {{token}} balance. Here's how it works:",
294
+ "superchargeConnectNumber": "Connect your phone number",
295
+ "superchargeReconnectNumber": "Reconnect your phone number\n<0>We have launched an improved Supercharge experience. Reconnect your phone number to keep earning rewards on your {{token}}.</0>",
296
+ "superchargeMinimumBalance": "Add a minimum balance of {{amount}} {{token}}",
297
+ "superchargeDisclaimer": "This will not affect your balance or previous earnings.",
298
+ "superchargeDisclaimerMaxRewards": "This will not affect your balance or previous earnings.",
299
+ "superchargeDisclaimerDayLimit": "This will not affect your balance or previous earnings. <0>Learn more</0>",
300
+ "superchargeTokenDetailsDialog": {
301
+ "title": "Which assets can I Supercharge?",
302
+ "body": "You’ll get rewarded weekly on your Celo stablecoin with the highest value (cEUR, cUSD, cREAL).",
303
+ "dismiss": "Dismiss"
304
+ },
305
+ "superchargingTitle": "App update required",
306
+ "superchargingDescription": "Update the {{appName}} app to continue receiving your weekly Supercharge rewards.",
307
+ "superchargingTitleV1_54": "Supercharge is ending",
308
+ "superchargingDescriptionV1_54": "Weekly rewards will be available to claim until Tuesday, May 28, at 23:59 UTC. Beginning May 29, you will nor longer be able to claim Supercharge rewards.",
309
+ "superchargeRewardsAvailable": "You have {{amount}} {{token}} available to claim!",
310
+ "superchargeRewardsAvailableMultipleTokens": "You have {{amounts}} available to claim!",
311
+ "superchargeClaimText": "Claim your rewards until Tuesday, May 28, at 23:59 UTC. Beginning May 29, you will no longer be able to claim Supercharge rewards.",
312
+ "superchargeClaimButton": "Claim Rewards",
313
+ "superchargeFetchRewardsFailed": "Error while fetching pending Supercharge rewards. Please try again later.",
314
+ "superchargeClaimSuccess": "Your Supercharge rewards have been added to your Total Balance.",
315
+ "superchargeClaimFailure": "There was an issue claiming your Supercharge rewards.",
316
+ "superchargeNotificationBody": "Your Supercharge rewards are here! Claim them now.",
317
+ "superchargeNotificationStart": "Claim rewards",
318
+ "superchargingNotificationBody": "You're getting 25% rewards with Supercharge ⚡",
319
+ "superchargingNotificationBodyV1_33": "You're getting {{apy}}% rewards with Supercharge ⚡",
320
+ "superchargingNotificationStart": "Learn more",
321
+ "startSuperchargingNotificationBody": "Get rewarded with crypto weekly. Start Supercharging!",
322
+ "startSuperchargingNotificationStart": "Get rewards",
323
+ "cashIn": "Add {{currency}}",
324
+ "connectNumber": "Connect number",
325
+ "connectToWallet": "Connect to {{dappName}}",
326
+ "confirmTransaction": "Confirm transaction",
327
+ "allow": "Allow",
328
+ "address": "Wallet Address",
329
+ "supportedNetwork": "Supported Network: {{network}}",
330
+ "supportedNetworks": "Supported Networks: {{networks}}",
331
+ "and": "and",
332
+ "phoneNumber": "Phone Number",
333
+ "transaction": {
334
+ "operation": "Operation",
335
+ "data": "Data",
336
+ "signTX": "Sign transaction",
337
+ "details": "Show details"
338
+ },
339
+ "shareInfo": "You must connect your wallet to approve transactions in this Dapp. Once connected, it will have access to your wallet address.",
340
+ "connectWalletInfoDappkit": "You must connect your wallet to approve transactions in this Dapp. Once connected, it will have access to your wallet address and phone number.",
341
+ "data": "Data",
342
+ "firebaseDisabled": "Firebase is disabled, notification and log uploading wont work",
343
+ "learnMore": "Learn More",
344
+ "equalToAmount": "Equal to <1></1>",
345
+ "whatIsGold": "{{appName}} allows you to buy and sell CELO",
346
+ "manageCelo": "Manage Celo Dollars",
347
+ "exchangeRate": "Exchange Rate",
348
+ "exchangeRateValue": "<0></0> : 1 {{takerTokenCode}}",
349
+ "history": "History",
350
+ "exchange": "Exchange",
351
+ "buy": "Buy",
352
+ "sell": "Sell",
353
+ "withdrawCelo": "Withdraw CELO",
354
+ "buyGold": "Buy CELO",
355
+ "sellGold": "Sell CELO",
356
+ "exchangeAmount": "Amount ({{tokenName}})",
357
+ "switchTo": "Switch to {{tokenName}}",
358
+ "subtotalAmount": "Subtotal @ <1></1>",
359
+ "inputSubtotal": "Subtotal @ <2></2>",
360
+ "inputSubtotal_gold": "$t(celoGold) @ <2></2>",
361
+ "buyGoldAmount": "Buy <0></0> $t(gold)",
362
+ "sellGoldAmount": "Sell <0></0> $t(gold)",
363
+ "includeExchangeFee": "*includes exchange fee",
364
+ "available": "Available",
365
+ "newBalance": "New Balance",
366
+ "reviewExchange": "Review Exchange",
367
+ "fee": "Fee",
368
+ "securityFee": "Network Fee",
369
+ "exchangeFee": "Exchange Fee",
370
+ "edit": "Edit",
371
+ "notEnoughDollars": "Not enough Celo Dollars to make exchange",
372
+ "notEnoughGold": "Not enough CELO to make exchange",
373
+ "pending": "Pending",
374
+ "loadingExchangeRate": "Loading Exchange Rate...",
375
+ "errorRefreshingRate": "Could not refresh exchange rate",
376
+ "exchangeRateChange": "Exchange rate has changed, please retry",
377
+ "feeExchangeEducation": "When exchanging between assets, a small fee goes towards keeping the value of Celo stablecoins tied to the asset they track. \n\nVisit the FAQ to learn more.",
378
+ "goldPrice": "CELO Price",
379
+ "yourGoldBalance": "Your CELO Balance",
380
+ "goldAmount": "CELO Amount",
381
+ "purchasedGold": "Purchased CELO",
382
+ "soldGold": "Sold CELO",
383
+ "exchangeRateInfo": "CELO prices are approximate",
384
+ "rateInfoTitle": "CELO prices are approximate",
385
+ "rateInfoBody": "Your amount could change depending on market conditions. Your final amount will be no more than 1% different from the estimate shown.",
386
+ "accountAddressLabel": "Account Address",
387
+ "celoAmountLabel": "Amount (CELO)",
388
+ "maxSymbol": "Max",
389
+ "percentage": "{{percentage}}%",
390
+ "withdrawCeloReview": "Review",
391
+ "withdrawCeloTo": "Withdraw to",
392
+ "withdrawCeloAmount": "Amount (CELO)",
393
+ "withdrawScanQrTitle": "Scan",
394
+ "tokenBalance": "{{token}} Balance",
395
+ "addFunds": "Add Funds",
396
+ "addFundsHeaderWithCurrency": "Add {{token}}",
397
+ "addFundsSubtitle": "Fund your {{appName}} account",
398
+ "exchanges": "Exchanges",
399
+ "noExchanges": "There are no exchanges available for {{digitalAsset}} in your region.",
400
+ "buySellOnExchanges": "Buy/Sell on Exchanges",
401
+ "cashOut": "Withdraw Funds",
402
+ "cashOutSubtitle": "Spend on gift cards and other purchases or send funds to a crypto exchange",
403
+ "cashOutComingSoon": "Cash Out (Coming Soon)",
404
+ "spend": "Spend",
405
+ "spendSubtitle": "Use your balance with supporting merchants",
406
+ "amountCelo": "Amount (CELO)",
407
+ "onlyCeloDollars": "cUSD only",
408
+ "onlyCelo": "CELO only",
409
+ "celoDollar": "Celo Dollar",
410
+ "celoEuro": "Celo Euro",
411
+ "celoReal": "Celo Real",
412
+ "celoDollars": "Celo Dollars",
413
+ "ether": "Ether",
414
+ "tapToCopyCeloDollarsAddress": "Tap to copy your {{appName}} CUSD address",
415
+ "disclaimerFiat": "{{currency}} values are estimates.",
416
+ "dollarsNotYetEnabledNote": "Celo Dollars are not yet available on any providers. To get Celo Dollars, purchase CELO and exchange it for Celo Dollars in the CELO tab.",
417
+ "selectDigitalCurrency": "Select an asset",
418
+ "selectPaymentMethod": "Select method:",
419
+ "payWithBank": "Bank account",
420
+ "payWithCard": "Debit card",
421
+ "payWithExchange": "Cryptocurrency exchange",
422
+ "selectCashOutMethod": "Select method:",
423
+ "receiveOnAddress": "Wallet address",
424
+ "receiveWithBidali": "Gift Cards and Mobile Top Up",
425
+ "fundingEducationDialog": {
426
+ "title": "Funding your {{appName}}",
427
+ "body": "To fund your {{appName}} wallet, purchase your preferred asset from one of the 3rd party providers available in your location. For more information please visit <0>{{link}}</0>",
428
+ "dismiss": "OK"
429
+ },
430
+ "cashOutEducationDialog": {
431
+ "title": "Withdraw from {{appName}}",
432
+ "body": "To withdraw your {{appName}} balance, sell the desired asset with one of the 3rd party providers available in your location. For more information please visit <0>{{link}}</0>",
433
+ "dismiss": "OK"
434
+ },
435
+ "explanationModal": {
436
+ "title": "About Providers",
437
+ "body": "Providers allow you to add or withdraw funds from your account. They determine their own rates and restrictions depending on various factors. Please visit the provider’s website for specific help."
438
+ },
439
+ "invalidAmountDialog": {
440
+ "minAmount": "Our providers do not support totals smaller than {{usdLimit}}{{localLimit}}. Please enter a larger amount.",
441
+ "maxAmount": "Our providers do not support totals larger than {{usdLimit}}{{localLimit}}. Please enter a smaller amount.",
442
+ "dismiss": "OK"
443
+ },
444
+ "providerFeesDialog": {
445
+ "title": "Provider Fees",
446
+ "body1": "Provider fees are set by each provider individually and include an exchange fee and liquidity fee, among others. To learn more please visit ",
447
+ "body2": "{{providerName}}'s website"
448
+ },
449
+ "providerFeeDiscountDialog": {
450
+ "title": "Fee Discount",
451
+ "body": "As a promotion, fees are temporarily subsidized to celebrate the launch of {{appName}}!"
452
+ },
453
+ "pleaseSelectProvider": "Please select a provider below. These links connect to a third party service.",
454
+ "otherFundingOptions": "For more ways to add and withdraw funds, visit <0>How to fund your account</0>",
455
+ "youCanTransferIn": "You can use a third party exchange to send {{digitalAsset}} to your {{appName}} account. You'll need your Account Address for this.",
456
+ "youCanTransferOut": "You can withdraw your funds by sending them to a third party exchange that supports {{digitalAsset}}.",
457
+ "useBalanceWithMerchants": "Use your balance with supporting merchants",
458
+ "findMerchants": "Find local merchants near you",
459
+ "celoDeposit": "CELO Purchase",
460
+ "cUsdDeposit": "cUSD Purchase",
461
+ "cEurDeposit": "cEUR Purchase",
462
+ "providerUnavailable": "Not currently available",
463
+ "pricePer": "Price per {{coin}}",
464
+ "feeDiscount": "Fee Discount",
465
+ "continueToProvider": "Continue to {{provider}}",
466
+ "cicoSuccess": {
467
+ "title": "Order submitted!",
468
+ "bodyWithProvider": "{{provider}} is processing your order. You should receive your funds within a couple of days.",
469
+ "bodyWithoutProvider": "The service provider is processing your order. You should receive your funds within a couple of days."
470
+ },
471
+ "restrictedRegion": "Limited support in region",
472
+ "unsupportedLocation": "{{appName}} is not supported in your location",
473
+ "unsupportedPaymentMethod": "Paying with a {{paymentMethod}} is not supported in your region",
474
+ "noProviders": "There are no providers available for {{digitalAsset}} in your region.",
475
+ "noPaymentMethods": "There are no payment methods available for {{digitalAsset}} in your region.",
476
+ "switchCurrency": "Switch Currency",
477
+ "accept": "Accept",
478
+ "at": "at",
479
+ "yourClockIsBroke": "Your phone date and time is inaccurate",
480
+ "adjustYourClock": "Set the correct time or adjust your clock to read time automatically.",
481
+ "adjustDate": "Adjust Date",
482
+ "connect": "Connect",
483
+ "save": "Save",
484
+ "scan": "Scan",
485
+ "next": "Next",
486
+ "skip": "Skip",
487
+ "copy": "Copy",
488
+ "goBack": "Go Back",
489
+ "reset": "Reset",
490
+ "done": "Done",
491
+ "tip": "Tip: ",
492
+ "warning": "Warning ",
493
+ "downloadRewards": "Download Celo Rewards",
494
+ "wallet": "Wallet",
495
+ "send": "Send",
496
+ "search": "Search",
497
+ "namePhoneAddress": "Name, phone, or address",
498
+ "payments": "Payments",
499
+ "activity": "Activity",
500
+ "earnRewards": "Earn Rewards",
501
+ "notEnoughStableError": "Not enough {{token}} to make exchange",
502
+ "notEnoughGoldError": "Not enough CELO to make exchange",
503
+ "exchangeFailed": "Exchange failed, please retry",
504
+ "transactionFailed": "Transaction failed, please retry",
505
+ "paste": "Paste",
506
+ "choose": "Choose",
507
+ "receivedPayment": "Received Payment",
508
+ "receivedNft": "Received NFT",
509
+ "sentNft": "Sent NFT",
510
+ "getStarted": "Get Started",
511
+ "manageCeloDollars": "Manage Celo Dollars",
512
+ "sendCeloDollars": "Send Celo Dollars",
513
+ "startEarning": "Start Earning",
514
+ "backToWallet": "Back to Wallet",
515
+ "exchangeForGold": "Exchange for CELO",
516
+ "missingFullName": "Name cannot be empty",
517
+ "invalidPhone": "Invalid phone number",
518
+ "needMoreFundsToSend": "You should have {{currencySymbol}}{{amountNeeded}} to make this transaction. Please add funds or try sending less.",
519
+ "invalidAmount": "Invalid amount",
520
+ "invalidCode": "Invalid Code",
521
+ "confirm": "Confirm",
522
+ "readCodesAuto": "Read Codes Automatically",
523
+ "enterManually": "Enter Manually",
524
+ "incorrectPin": "Incorrect PIN",
525
+ "pinInputCanceled": "The PIN is necessary. Please try again.",
526
+ "setPinFailed": "Failed to set PIN",
527
+ "optIn": "Opt In",
528
+ "inviteFriends": "Invite Friends",
529
+ "account": "Account",
530
+ "invalidAccount": "Invalid Account",
531
+ "delete": "Delete",
532
+ "remind": "Remind",
533
+ "pay": "Pay",
534
+ "decline": "Decline",
535
+ "to": "To",
536
+ "for": "For",
537
+ "reclaim": "Reclaim",
538
+ "claimed": "Claimed",
539
+ "celoGold": "CELO",
540
+ "celoEuros": "Celo Euros",
541
+ "balanceAvailable": "<0></0> available",
542
+ "subtotal": "Subtotal",
543
+ "total": "Total",
544
+ "totalInDollars": "Celo Dollars @ <0></0>",
545
+ "totalInEuros": "Celo Euros @ <0></0>",
546
+ "totalInCelo": "Celo @ <0></0>",
547
+ "totalInToken": "<0></0> @ <1></1>",
548
+ "tokenExchanteRate": "{{symbol}} @ <0></0>",
549
+ "tokenExchangeRateApprox": "1 {{symbol}} ≈ <0></0>",
550
+ "oops": "Oops!",
551
+ "somethingWrong": "Something went wrong.",
552
+ "verifyFailed": "Failed to connect",
553
+ "restartApp": "Restart App",
554
+ "quitApp": "Quit",
555
+ "loading": "Loading…",
556
+ "importContactsFailed": "Failed to import contacts",
557
+ "sendPaymentFailed": "Failure sending payment",
558
+ "paymentRequestFailed": "Payment Request did not send",
559
+ "reclaimingEscrowedPaymentFailed": "Payment could not be reclaimed",
560
+ "connectingToCelo": "Connecting…",
561
+ "poorConnection": {
562
+ "0": "Bad Connection",
563
+ "1": "some features disabled"
564
+ },
565
+ "networkConnectionFailed": "Could not connect with the network, please check your data connection",
566
+ "firebaseFailed": "Internet connection is weak. Account information cannot be updated until connection is restored.",
567
+ "gasPriceUpdateFailed": "Could not update fee",
568
+ "appUpdateAvailable": "App Update Available",
569
+ "appIsOutdated": "Your current version is out of date, please update to the latest version",
570
+ "update": "Update",
571
+ "qrFailedNoAddress": "QR code read failed. Reason: wallet address not found.",
572
+ "qrFailedInvalidAddress": "QR code read failed. Reason: wallet address invalid.",
573
+ "qrFailedInvalidRecipient": "QR code does not belong to the selected recipient",
574
+ "qrFailedNoPhoneNumber": "QR code is not associated with your contact's phone number",
575
+ "corruptedChainDeleted": "Corrupted chain data has been deleted, please restart the app",
576
+ "contractKitInitFailed": "Failed to initialize the contract kit, please try restarting the app or emailing support.",
577
+ "web3FailedToSync": "Failing to sync, check your network connection",
578
+ "errorDuringSync": "Error occurred during sync, please try again later",
579
+ "accountUnlockFailed": "Unable to unlock your account",
580
+ "calculateFeeFailed": "Could not calculate fee",
581
+ "failedToSwitchSyncModes": "Failed to switch sync modes",
582
+ "gold": "CELO",
583
+ "localCurrencyTitle": "Select Currency",
584
+ "or": "or",
585
+ "accepted": "Accepted",
586
+ "processing": "Processing",
587
+ "unknown": "Unknown",
588
+ "emptyList": "Empty list",
589
+ "timeframes": {
590
+ "30d": "30 days"
591
+ },
592
+ "message": "Message",
593
+ "addressLookupFailure": "Failed to look up phone number address",
594
+ "ordinals": [
595
+ "zeroth",
596
+ "first",
597
+ "second",
598
+ "third",
599
+ "fourth",
600
+ "fifth",
601
+ "sixth",
602
+ "seventh",
603
+ "eighth",
604
+ "ninth",
605
+ "tenth",
606
+ "eleventh",
607
+ "twelfth",
608
+ "thirteenth",
609
+ "fourteenth",
610
+ "fifteenth",
611
+ "sixteenth",
612
+ "seventeenth",
613
+ "eighteenth",
614
+ "nineteenth",
615
+ "twentieth",
616
+ "twenty-first",
617
+ "twenty-second",
618
+ "twenty-third",
619
+ "twenty-fourth",
620
+ "twenty-fifth",
621
+ "twenty-sixth",
622
+ "twenty-seventh",
623
+ "twenty-eighth",
624
+ "twenty-ninth",
625
+ "thirtieth"
626
+ ],
627
+ "addressValidationError": "Incorrect wallet address",
628
+ "addressValidationNoMatch": "Incorrect wallet address",
629
+ "addressValidationFullPoorlyFormatted": "Wallet addresses begin with \"0x\" and are 42 characters long",
630
+ "addressValidationPartialPoorlyFormatted": "Wallet addresses begin with \"0x\" and are 42 characters long",
631
+ "addressValidationFullOwnAddress": "This is your wallet address, please enter your contact’s wallet address.",
632
+ "addressValidationPartialOwnAddress": "This is your wallet address, please enter your contact’s wallet address.",
633
+ "providerRateFetchFailed": "Could not fetch provider rate. You can continue without a prefilled rate.",
634
+ "helpFindAccount": "Help your contact find their Account Address",
635
+ "close": "Close",
636
+ "home": "Home",
637
+ "accountKey": "Recovery Phrase",
638
+ "privateKey": "Private Key",
639
+ "yourPrivateKey": "Your Private Key",
640
+ "copyPrivateKey": "Copy Private Key",
641
+ "privateKeyCopied": "Private key copied to clipboard",
642
+ "keepSafe": "Keep your Private Key Safe",
643
+ "privateKeyWarning": "Never share your Private Key or enter it into apps or websites. Anyone who has your Private Key can access your entire wallet.",
644
+ "noAccountFound": "No account found",
645
+ "noMnemonicFound": "No mnemonic found",
646
+ "failedToGeneratePrivateKey": "Failed to generate private key",
647
+ "failedToLoadPrivateKey": "Failed to load private key",
648
+ "failedToCopy": "Failed to copy to clipboard",
649
+ "copiedAlert": "Copied",
650
+ "walletSecurity": "Wallet Security",
651
+ "addAndWithdraw": "Add & Withdraw",
652
+ "settings": "Settings",
653
+ "help": "Help",
654
+ "dismiss": "Dismiss",
655
+ "review": "Review",
656
+ "insufficientBalance": "Your balance is too low to make this transaction",
657
+ "insufficientBalanceStable": "You do not have enough cUSD or cEUR to complete this transaction",
658
+ "amount": "Amount",
659
+ "currentBalance": "Current Balance (cUSD)",
660
+ "restore": "Restore",
661
+ "commentUnavailable": "Comment Unavailable",
662
+ "accountClearFailed": "There was an error while removing your Recovery Phrase. You might have to reinstall the app to restore all functionality.",
663
+ "withdraw": "Withdraw",
664
+ "countryNotAvailable": "{{appName}} is not available in your country",
665
+ "fetchFailed": "Server connection failed",
666
+ "pictureLoadFailed": "There was an error while loading your picture",
667
+ "simplexPurchaseFetchFailed": "Failed to retreive a quote from Simplex. Please try again later",
668
+ "providerFetchFailed": "Could not connect to service. Please contact support",
669
+ "ok": "OK",
670
+ "cashOutLimitExceeded": "You cannot cash out more than your balance of {{balance}} {{currency}}",
671
+ "appDescription": "A mobile payments wallet that works worldwide",
672
+ "earn": "Earn",
673
+ "free": "Free",
674
+ "notNow": "Not Now",
675
+ "goldEducationSteps": [
676
+ {
677
+ "title": "What is CELO?",
678
+ "text": "CELO is a digital currency that keeps the Celo Dollar (cUSD) stable."
679
+ },
680
+ {
681
+ "title": "CELO’s price changes",
682
+ "text": "If more people use the Celo Dollar, the value of CELO increases. Unlike CELO, the Celo Dollar doesn't change in value. "
683
+ },
684
+ {
685
+ "title": "Shape the Celo Network",
686
+ "text": "By holding CELO, you have the ability to vote for changes and features you’d like to see on the Celo Network."
687
+ },
688
+ {
689
+ "title": "Please buy and sell responsibly",
690
+ "text": "{{appName}} allows you to buy and sell CELO. CELO presents a risk of financial loss, please exercise caution."
691
+ }
692
+ ],
693
+ "inviteWithWhatsapp": "Invite with WhatsApp",
694
+ "whySendFees": "This fee covers costs for the new user to connect their phone number",
695
+ "whyReceiveFees": "You were sent some crypto to confirm your account",
696
+ "inviteSent": "Invite Sent",
697
+ "accountSetupFailed": "Failed to create your wallet",
698
+ "accountSetupFailedDescription": "Please delete {{appName}} from your device and try again. If you continue to have issues please reach out to support.",
699
+ "closeApp": "Close app",
700
+ "transferDollarsToAccount": "Funds transferred to your account!",
701
+ "inviteAnyone": "Send easily to your friends by adding your contacts",
702
+ "inviteReceived": "Invite Received",
703
+ "escrowPaymentNotificationTitle": "Invite to {{mobile}} can't be claimed",
704
+ "sendAndInvite": "Send & Invite",
705
+ "inviteRewardsBanner": {
706
+ "title": "Invite friends and collect NFTs",
707
+ "body": "Once they set up their {{appName}} wallet and connect their number, you’ll each get an exclusive NFT."
708
+ },
709
+ "inviteRewardsBannerCUSD": {
710
+ "title": "Invite friends and get up to 12 cUSD",
711
+ "body": "Once they connect their number and add funds to {{appName}}, you’ll both receive 0.50 cUSD."
712
+ },
713
+ "inviteWithSMS": {
714
+ "title": "Invite with SMS",
715
+ "shareMessage": "Hey! Sign up to {{appName}} wallet. I use it to grow my savings in USD and crypto, and you can set it up in seconds with just a phone number: {{shareUrl}}."
716
+ },
717
+ "inviteWithUrl": {
718
+ "title": "Invite a Friend",
719
+ "body": "Connect and share value with your friends and family on {{appName}}.",
720
+ "button": "Share Invite",
721
+ "error": "There was an issue creating a sharable link",
722
+ "share": "Hey! Sign up to {{appName}} wallet. I use it to grow my savings in USD and crypto, and you can set it up in seconds with just a phone number. Make sure to sign up with my referral link here: {{shareUrl}}.",
723
+ "help": "To collect this reward, the invitee must download through the referral link, connect their phone number, add funds and keep them in their {{appName}} wallet for 7 days. <0>View all terms</0>",
724
+ "rewardsActive": {
725
+ "title": "Invite friends and collect NFTs",
726
+ "body": "Invite your friends and family to download {{appName}} and each of you will get an exclusive NFT"
727
+ },
728
+ "rewardsActiveCUSD": {
729
+ "title": "GET UP TO 12 cUSD for inviting your friends to {{appName}}!",
730
+ "body": "Get 0.50 cUSD for every friend you invite to {{appName}}. Once they connect their number, add funds, and hold them for 7 days, you’ll both get 0.50 cUSD. Hurry, funds are limited! (Limit 25 friends)."
731
+ }
732
+ },
733
+ "getReward": "Get ${{reward}}",
734
+ "welcomeCelo": "Welcome to {{appName}}",
735
+ "chooseCountryCode": "Country Code",
736
+ "chooseCountry": "Country",
737
+ "joinText": "{{appName}} helps you to send, receive, and save value on the blockchain.",
738
+ "terms": {
739
+ "title": "Terms and Conditions",
740
+ "heading1": "Data and Privacy",
741
+ "heading2": "Digital Assets and {{appName}}",
742
+ "info": "In order to use our services, please read and accept our <0>User Agreement and Terms</0> by clicking the accept button below.",
743
+ "privacy": "By joining this network, you give us permission to collect anonymous information about your use of the app. Additionally, if you connect your phone number, a hashed copy of it will be stored. If you grant {{appName}} access to your contact list, {{appName}} will import each contact's name, phone number and profile picture to allow users to connect through the {{appName}} app. To learn how we collect and use this information please review our <0>Privacy Policy</0>.",
744
+ "goldDisclaimer": "When you create an \"account\" with {{appName}} you are creating a digital wallet to which only you hold the keys. No other person or entity, including {{appName}}, can recover your key, change or undo transactions, or recover lost funds. Be aware that digital assets are part of a new asset class and present a risk of financial loss. Carefully consider your financial circumstances and tolerance for financial risk before purchasing any digital asset.",
745
+ "goldDisclaimerWithPoints": "When you create an \"account\" with {{appName}} you are creating a digital wallet to which only you hold the keys. No other person or entity, including {{appName}}, can recover your key, change or undo transactions, or recover lost funds. {{appName}} grants tokenized loyalty rewards (\"Points\") to Users for engaging in certain in-app activities. Points are on-chain, non-transferable, and non-redeemable collectibles. No guarantees are made about Points availability or value. Be aware that digital assets are part of a new asset class and present a risk of financial loss. Carefully consider your financial circumstances and tolerance for financial risk before purchasing any digital asset."
746
+ },
747
+ "fullNameOrPsuedonym": "Full name or pseudonym",
748
+ "namePlaceholder": "ex. name",
749
+ "nameAndPicGuideCopyTitle": "What’s your name?",
750
+ "nameAndPicGuideCopyContent": "We’d like to know what to call you.",
751
+ "important": "Important",
752
+ "confirmPin": {
753
+ "title": "Enter PIN"
754
+ },
755
+ "goToSystemSecuritySettingsActionLabel": "Go to security",
756
+ "enableSystemScreenLockFailedMessage": "Failed to enable screen lock",
757
+ "initKeystoreFailureMessage": "Failed to init keystore",
758
+ "pinLostForeverMessage": "You removed the screen lock, the PIN is lost",
759
+ "importContactsPermission": {
760
+ "title": "Import Contacts",
761
+ "0": "Connecting your address book makes it easy to send and request payments with your friends. Otherwise, you’ll have to enter their info individually.",
762
+ "1": "Don’t worry—connecting does not send invites to your contacts.",
763
+ "enable": "Enable Contact Access",
764
+ "loading": "Finding friends on {{appName}}..."
765
+ },
766
+ "getVerified": "Connect Phone Number",
767
+ "notReadyForCode": "Not yet ready for code entry",
768
+ "errorRequestCode": "Failed to request codes.",
769
+ "errorRedeemingCode": "Failed to redeem code.",
770
+ "pleaseRetry": "Please try connecting again.",
771
+ "retryVerification": "Retry connection",
772
+ "education": {
773
+ "header": "Connect Your Phone",
774
+ "body1": "Next, please connect your phone number.",
775
+ "body2": "Connecting your phone makes it easier to send and receive with friends. You can also skip this step and return to it later.",
776
+ "learnMore": "Learn more about phone connection",
777
+ "start": "Connect Phone Number",
778
+ "skip": "Skip For Now"
779
+ },
780
+ "verificationLoading": {
781
+ "confirming": "Connecting phone number…",
782
+ "pleaseKeepAppOpen": "Please don't leave this screen or you'll have to restart",
783
+ "learnMore": "Learn more",
784
+ "card1": "To make sure your phone number is really yours, we're sending you three messages.",
785
+ "card2": "Once your number is connected, you can send and receive funds easily to your phone number.",
786
+ "card3": "Connecting your number also allows you to see which of your friends are on {{appName}}.",
787
+ "card4": "We require three SMS messages to securely connect your phone number."
788
+ },
789
+ "skipModal": {
790
+ "header": "Are you sure?",
791
+ "body1": "Connecting your number gives you more ways to send payments and allows you to collect Supercharge rewards."
792
+ },
793
+ "failModal": {
794
+ "header": "Confirmation Error",
795
+ "body1": "An issue has occurred while connecting your phone number.",
796
+ "body2": "You can skip connecting for now and try again later.",
797
+ "body1InsufficientBalance": "Your current balance is not high enough to complete the connection process.",
798
+ "body2InsufficientBalance": "Please try again when you have added funds to your wallet.",
799
+ "body1SaltQuotaExceeded": "Your phone number lookup quota is used up",
800
+ "body2SaltQuotaExceeded": "Please try again when you have purchased more lookups",
801
+ "enterCodesBody": "If you already received three codes via SMS, you can still enter them.",
802
+ "enterCodesButton": "Enter Codes"
803
+ },
804
+ "retryWithFornoModal": {
805
+ "header": "Retry Connection with Data Saver?",
806
+ "body1": "An issue has occurred while connecting your phone number. We recommend trying again with Data Saver mode enabled.",
807
+ "body2": "Data Saver mode allows you to communicate with the network more consistently using a trusted connection.",
808
+ "retryButton": "Retry with Data Saver"
809
+ },
810
+ "congratsVerified": "Congratulations, your phone number is now connected!",
811
+ "notification": {
812
+ "body": "Connect your number to claim funds and connect to friends",
813
+ "cta": "Connect Now"
814
+ },
815
+ "quotaLookup": {
816
+ "title": "Lookup quota exceeded",
817
+ "body1": "To keep your phone number safe and private, {{appName}} limits how many phone numbers users can lookup.",
818
+ "body2": "You can purchase more lookups for a small fee.",
819
+ "cta": "Purchase lookups (2)"
820
+ },
821
+ "onboardingEducation": {
822
+ "step1": "If you can text, you can crypto. Starting now, your phone is your crypto wallet.",
823
+ "step2": "With {{appName}}, it’s easy to access and easy to grow your crypto.",
824
+ "step3": "All you need is a mobile phone to send, spend and explore.",
825
+ "payment": "Make payments globally with near zero fees",
826
+ "impact": "Support climate and social change initiatives",
827
+ "spend": "Use your crypto to shop your favorite brands"
828
+ },
829
+ "enableBiometry": {
830
+ "title": "Secure your wallet",
831
+ "description": "{{biometryType}} secures your wallet and makes it easier to use {{appName}}",
832
+ "cta": "Turn on {{biometryType}}",
833
+ "guideTitle": "Want to add {{biometryType}}?",
834
+ "guideDescription": "{{biometryType}} makes it easier, quicker, and more secure to connect your wallet to dapps & sign transactions."
835
+ },
836
+ "biometryType": {
837
+ "FaceID": "Face ID",
838
+ "TouchID": "Touch ID",
839
+ "Fingerprint": "Fingerprint recognition",
840
+ "Face": "Face recognition",
841
+ "Iris": "Iris recognition"
842
+ },
843
+ "useBiometryType": "Use {{biometryType}}",
844
+ "unlockWithBiometryPrompt": "Authenticate to unlock {{appName}}",
845
+ "welcome": {
846
+ "title": "Step into the future of crypto with {{appName}}",
847
+ "titleGuided": "Welcome to {{appName}}!\nLet’s create your crypto wallet.",
848
+ "createAccount": "Create new account",
849
+ "restoreAccount": "Restore my account",
850
+ "createNewWallet": "Create new wallet",
851
+ "restoreWallet": "Restore wallet",
852
+ "hasWallet": "I already have a wallet",
853
+ "hasWalletV1_88": "I have a wallet",
854
+ "header": "Welcome to {{appName}}! Let's create your crypto wallet.",
855
+ "getStarted": "Get Started"
856
+ },
857
+ "accessContacts": {
858
+ "disclosure": {
859
+ "title": "Import Contacts",
860
+ "body": "{{appName}} would like to import your contacts. By tapping below, I allow access to my contacts' phone numbers, names and photos for purposes of connecting with them through {{appName}}"
861
+ }
862
+ },
863
+ "createAccount": "Create Account",
864
+ "createProfile": "Create Profile",
865
+ "restoreAccount": "Restore My Account",
866
+ "registrationSteps": "Step {{step}} of {{totalSteps}}",
867
+ "selectCountryCode": "Select Country Code",
868
+ "pincodeSet": {
869
+ "createNew": "Create a New PIN",
870
+ "verify": "Enter your PIN again to confirm",
871
+ "changePIN": "Change PIN",
872
+ "pinsDontMatch": "The PINs didn't match",
873
+ "invalidPin": "Please use a stronger PIN",
874
+ "onboardingTitle": "Choose a 6 digit PIN",
875
+ "onboardingConfirm": "Enter your PIN again",
876
+ "onboardingSubtitle": "Your PIN will secure your wallet",
877
+ "pin": "PIN"
878
+ },
879
+ "inviteCode": {
880
+ "title": "Invite Code",
881
+ "body": "Did you receive a payment or invite? If so, please copy and paste the Invite Code below.",
882
+ "label": "Invite Code",
883
+ "codePlaceholder": "Enter invite code",
884
+ "noCode": "Don’t have an Invite Code",
885
+ "nodeCodeInviteLink": "Don’t have an invite code? Request one at <0>celo.org/developers/wallet</0> or <1>continue without</1>",
886
+ "loadingHeader": "Creating account...",
887
+ "loadingBody": "This can take up to 90 seconds"
888
+ },
889
+ "verificationEducation": {
890
+ "title": "Phone Number",
891
+ "header": "Connect your phone number",
892
+ "body": "To make sure your number is really yours, you’ll receive three SMS messages that will cost about 0.05 cUSD each.\n\nConnection takes about three minutes.",
893
+ "feelessBody": "You will receive three messages to help securely connect your phone number. Connection takes about three minutes.",
894
+ "start": "Start",
895
+ "resume": "Resume",
896
+ "doINeedToConfirm": "Do I need to connect?",
897
+ "skipForNow": "Skip for now",
898
+ "bodyInsufficientBalance": "Your current balance is not high enough to complete the confirmation process.\n\nPlease try again when you have added funds to your wallet.",
899
+ "bodyAlreadyVerified": "Your number is already connected!"
900
+ },
901
+ "verificationSkipDialog": {
902
+ "title": "Are you sure?",
903
+ "body": "Connecting allows you to send and receive funds to any phone number.\n\nAccounts that are not connected can only send payments using wallet addresses or QR codes.",
904
+ "cancel": "Go Back",
905
+ "confirm": "Skip for now"
906
+ },
907
+ "verificationPrematureRevealMessage": "Please wait one minute before resending",
908
+ "verificationLearnMoreDialog": {
909
+ "title": "Phone Numbers and {{appName}}",
910
+ "body": "Connecting allows you to send and receive funds with your phone number.\n\n<0>Can I do this later?</0>\n\nYes, but wallets that aren’t connected can only send payments with QR codes or Account Addresses.\n\n<1>Secure and Private</1>\n\n{{appName}} uses state of the art cryptography to keep your phone number private.",
911
+ "dismiss": "Dismiss"
912
+ },
913
+ "phoneVerificationScreen": {
914
+ "screenTitle": "Phone Number",
915
+ "title": "Connect your phone number to {{appName}}",
916
+ "description": "This links your wallet address to your phone number so sending crypto is easy",
917
+ "startButtonLabel": "Connect",
918
+ "learnMore": {
919
+ "buttonLabel": "Do I need to connect?",
920
+ "title": "Do I need to connect?",
921
+ "body": "Connecting your phone number will allow you to send money to friends in your address book and other phone numbers. \n\nIf you choose to skip this step you won’t be able to access your contacts and you will only be able to send money via QR code or wallet address."
922
+ },
923
+ "skip": {
924
+ "title": "Are you sure?",
925
+ "body": "Connecting allows you to send and receive funds from your phone number.",
926
+ "cancel": "Go Back",
927
+ "confirm": "Skip for now"
928
+ }
929
+ },
930
+ "phoneVerificationInput": {
931
+ "title": "Enter the code",
932
+ "description": "We sent a code to {{phoneNumber}}, please enter it below.",
933
+ "help": "Help",
934
+ "codeInputPlaceholder": "123456",
935
+ "helpDialog": {
936
+ "title": "Help",
937
+ "body": "We sent an SMS to your phone number. Please check your text messages to find the 6 digit code. \n\nIf you’re having trouble receiving messages, you can skip this step for now and try again later.",
938
+ "bodyCloudBackupOnboarding": "We sent an SMS to your phone number. Please check your text messages to find the 6 digit code. \n\nIf you’re having trouble receiving messages, we recommend backing up with a Recovery Phrase. You can try signing in with your email and phone later.",
939
+ "skip": "Skip",
940
+ "dismiss": "Go back",
941
+ "useRecoveryPhrase": "Use Recovery Phrase"
942
+ },
943
+ "verificationFailure": "Oops! Something went wrong, please try again later.",
944
+ "resendButtonNotYetAvailable": "Resend available in {{secondsRemaining}} second(s)",
945
+ "resendButton": "Didn’t receive code?"
946
+ },
947
+ "importExistingKey": {
948
+ "keyPlaceholder": "horse leopard dog monkey ...",
949
+ "header": "Restore wallet",
950
+ "title": "Enter your recovery phrase",
951
+ "description": "Use the 12 or 24-word phrase that you saved when you set up your wallet to restore.",
952
+ "descriptionV1_90": "Your Recovery Phrase is a 12 or 24-word phrase that you wrote down and saved when you set up your wallet. Please enter it here to restore your wallet.",
953
+ "emptyWalletDialog": {
954
+ "description": "This wallet doesn’t have any funds. Would you still like to use it?",
955
+ "action": "Use Wallet",
956
+ "title": "Balance\n<0></0>"
957
+ }
958
+ },
959
+ "importSelect": {
960
+ "title": "Restore Your Wallet",
961
+ "description": "If you set up a backup to protect your wallet, choose an option below.",
962
+ "emailAndPhone": {
963
+ "title": "From email & phone backup",
964
+ "description": "Restore your wallet with the phone number & email you set up previously"
965
+ },
966
+ "recoveryPhrase": {
967
+ "title": "From recovery phrase",
968
+ "description": "Enter your 12 word recovery phrase to regain access to {{appName}}"
969
+ }
970
+ },
971
+ "verificationInput": {
972
+ "title": "Confirm",
973
+ "body": "We sent you three messages (SMS). Please copy and paste them below.",
974
+ "body_ios": "We sent you three messages (SMS). Please tap the link in each message to fill the codes below or copy and paste them manually.",
975
+ "body_short": "We sent three codes to {{phoneNumber}}, please enter them below.",
976
+ "codeLabel1": "First Code",
977
+ "codeLabel2": "Second Code",
978
+ "codeLabel3": "Third Code",
979
+ "codePlaceholder1": "Copy the first message",
980
+ "codePlaceholder1_ios": "Tap or copy the first message",
981
+ "codePlaceholder2": "Copy the second message",
982
+ "codePlaceholder2_ios": "Tap or copy the second message",
983
+ "codePlaceholder3": "Copy the third message",
984
+ "codePlaceholder3_ios": "Tap or copy the third message",
985
+ "codePlaceholderWithCodeInClipboard": "Great! Paste it here",
986
+ "resendMessages_all": "Resend all messages",
987
+ "resendMessages": "Resend last message",
988
+ "resendMessages_plural": "Resend {{count}} messages"
989
+ },
990
+ "verificationInputHelpDialog": {
991
+ "title": "Help",
992
+ "bodySection1": {
993
+ "title": "Received all three messages?",
994
+ "content": "If your messages contain a link, simply tap the links to confirm.\n\nIf there are no links, please copy and paste the messages into the fields. You’re welcome to paste the entire message."
995
+ },
996
+ "bodySection2": {
997
+ "title": "Missing some or all messages?",
998
+ "defaultContent": "If you’re having trouble receiving messages, you can skip this step for now and try again later. Sometimes it can take a few minutes for messages to arrive.",
999
+ "content": "$t(verificationInputHelpDialog.bodySection2.defaultContent)",
1000
+ "content_countdown": "$t(verificationInputHelpDialog.bodySection2.defaultContent) The skip option below will be available in {{count}} second.",
1001
+ "content_countdown_plural": "$t(verificationInputHelpDialog.bodySection2.defaultContent) The skip option below will be available in {{count}} seconds."
1002
+ },
1003
+ "body": "<0>$t(verificationInputHelpDialog.bodySection1.title)</0>\n\n$t(verificationInputHelpDialog.bodySection1.content)\n\n<1>$t(verificationInputHelpDialog.bodySection2.title)</1>\n\n$t(verificationInputHelpDialog.bodySection2.content)",
1004
+ "skip": "Skip for now",
1005
+ "back": "Go Back"
1006
+ },
1007
+ "success": {
1008
+ "message": "You're all set!"
1009
+ },
1010
+ "verificationUnavailable": "Phone number connection is currently unavailable. Please enter your phone number and we will notify you when it is possible to connect again.\n\nIn the meantime, you can continue to use {{appName}} with QR codes or Account Addresses. Don't worry, payments sent to your phone number will be waiting for you until you connect it to your account.",
1011
+ "requests": "Requests",
1012
+ "empty": "You have no Payment Requests",
1013
+ "celoDollarBalance": "Celo Dollar Balance",
1014
+ "requestDeclined": "Request Declined",
1015
+ "requestPaid": "Request Paid",
1016
+ "paymentRequestUpdateFailed": "Cannot update payment request",
1017
+ "incomingPaymentRequestNotificationTitle": "{{name}} requested",
1018
+ "outgoingPaymentRequestNotificationTitle": "Waiting for {{name}}",
1019
+ "requesting": "Requesting",
1020
+ "request": "Request",
1021
+ "requestToken": "Request {{token}}",
1022
+ "requestSent": "Request Sent",
1023
+ "from": "From",
1024
+ "verificationMessage": "You paid a fee to connect your account. Welcome to {{appName}}!",
1025
+ "receivedAmountFromCelo": "You received this amount from the Faucet!",
1026
+ "dollarsSent": "Dollars Sent",
1027
+ "withdrawToken": "Withdraw {{token}}",
1028
+ "sendToken": "Send {{token}}",
1029
+ "payment": "Payment",
1030
+ "sendOrRequest": "Send or Request",
1031
+ "recent": "Recent",
1032
+ "contacts": "Contacts",
1033
+ "characterLimitExceeded": "{{max}} Character Limit Exceeded",
1034
+ "payRequest": "Pay Request",
1035
+ "sendTo": "Send to",
1036
+ "addDescription": "Add description",
1037
+ "sentTo": "Sent To",
1038
+ "withdrawnTo": "Withdrawn to",
1039
+ "receivedFrom": "Received From",
1040
+ "commentLabel": "Message",
1041
+ "amountSent": "Amount Sent",
1042
+ "amountReceived": "Amount Received",
1043
+ "amountCeloWithdrawn": "Amount (CELO)",
1044
+ "feeEducation": "Blockchains collect a transaction fee to keep networks supported and running smoothly.",
1045
+ "reviewPayment": "Review Payment",
1046
+ "requestPayment": "Request Payment",
1047
+ "max": "MAX",
1048
+ "inviteSendTo": "Invite & send to",
1049
+ "keepMoneySafe": "We'll keep these funds safe until your friend creates a {{appName}} account",
1050
+ "searchFriends": "Try entering a phone number if you are unable to find who you're looking for",
1051
+ "inviteVerifyPayment": "Invite & Confirm Payment",
1052
+ "noResultsFor": "No results for",
1053
+ "noContacts": "No contacts",
1054
+ "searchForSomeone": "Search for someone using their name, phone number, or address",
1055
+ "sentPayment": "Sent Payment",
1056
+ "sentEscrowPayment": "Sent Escrow Payment",
1057
+ "mobileNumber": "Mobile #",
1058
+ "sendToMobileNumber": "Send to Phone Number",
1059
+ "requestFromMobileNumber": "Request From Phone Number",
1060
+ "sendToAddress": "Send to Address",
1061
+ "walletAddress": "Wallet Address",
1062
+ "inviteWithoutPayment": "Hi! I’ve been using {{appName}} to send crypto worldwide. It’s easy to try and I want to invite you to check it out with this link: {{link}}",
1063
+ "inviteWithEscrowedPayment": "Hi! I’ve been using {{appName}} to send crypto worldwide. I just sent you {{amount}} {{token}}. Please download the {{appName}} App and redeem your {{token}} using this link: {{link}}",
1064
+ "inviteWithRewards": "Hi! 👋 I'm using {{appName}} as my crypto wallet. It's super quick to download the app and connect your phone number - plus, we both get a special edition NFT as a reward. 💫 \n\nUse this link to download: {{link}}",
1065
+ "inviteWithRewardsCUSD": "Hey! Right now we can both get a free $0.50 reward if you sign up, connect your number, and fund your {{appName}} wallet. I use it to grow my savings in USD and crypto, and you can set it up in seconds with just a phone number. Make sure to sign up with my referral link here: \n\n{{link}} \n\n Hurry, the referral promotion ends soon.",
1066
+ "loadingContacts": "Finding your contacts",
1067
+ "myCode": "My Code",
1068
+ "scanCode": "Scan",
1069
+ "scanQRCode": "Scan QR Code",
1070
+ "enterQRCode": "Enter QR Code",
1071
+ "writeStorageNeededForQrDownload": "Storage write permission is needed for downloading the QR code",
1072
+ "cameraScanInfo": "Center code in the box above",
1073
+ "cameraNotAuthorizedTitle": "Enable Camera",
1074
+ "cameraNotAuthorizedDescription": "Please enable the Camera in your phone’s Settings. You’ll need it to scan QR codes.",
1075
+ "cameraSettings": "Settings",
1076
+ "toSentOrRequestPayment": "to send or request payment",
1077
+ "reminderSent": "Reminder Sent",
1078
+ "reclaimPayment": "Reclaim Payment",
1079
+ "totalRefunded": "Total Refunded",
1080
+ "loadingVerificationStatus": "Checking if recipient is connected…",
1081
+ "askForContactsPermissionAction": "Get my Contacts",
1082
+ "newAccountBalance": "New account balance: ",
1083
+ "estimatingFee": "Estimating fee ",
1084
+ "estimatedFee": "Estimated fee: ",
1085
+ "selectBalance": "Select Balance",
1086
+ "stableBalance": "{{token}} Balance",
1087
+ "selectToken": "Select Asset",
1088
+ "verificationCta": {
1089
+ "header": "Send crypto like a text!",
1090
+ "body": "Link your phone number to your wallet address so you can send & receive payments with friends.",
1091
+ "cta": "Link Phone number"
1092
+ },
1093
+ "importContactsCta": {
1094
+ "header": "Enable Contacts",
1095
+ "body": "Enable Contacts in your phone’s Settings to easily send and request payments.",
1096
+ "cta": "Settings"
1097
+ },
1098
+ "contactSyncProgress": {
1099
+ "header": "Syncing Contacts",
1100
+ "progress": "{{current}} of {{total}}",
1101
+ "importing": "Importing..."
1102
+ },
1103
+ "confirmAccount": {
1104
+ "header": "{{displayName}} has multiple wallets.",
1105
+ "headerNoDisplayName": "This phone number has multiple wallets.",
1106
+ "button": "Confirm Wallet Address"
1107
+ },
1108
+ "secureSendExplanation": {
1109
+ "body1": "There are multiple wallets associated with {{e164PhoneNumber}}. In order to confirm that you have the right account, please scan their QR code or enter their wallet address.",
1110
+ "body2": "You must scan their QR code or confirm their Account Address before transacting."
1111
+ },
1112
+ "confirmAccountNumber": {
1113
+ "title": "Confirm Wallet Address",
1114
+ "bodyPartial": "Please ask {{displayName}} for the last four digits of their wallet address. It's safest to do this in person or by phone call.",
1115
+ "bodyPartialNoDisplayName": "Please ask your contact for the last four digits of their wallet address. It's safest to do this in person or by phone call.",
1116
+ "body1Full": "Please ask {{displayName}} for their Wallet Address.",
1117
+ "body1FullNoDisplayName": "Please ask your contact for their Wallet Address.",
1118
+ "body2Full": "The safest way to do this is in person. For security, please do not use text messaging (SMS).",
1119
+ "help": "Where can I find a Wallet Address?",
1120
+ "submit": "Submit"
1121
+ },
1122
+ "accountInputHeaderPartial": "Last 4 Digits",
1123
+ "accountInputHeaderFull": "Account Address",
1124
+ "helpModal": {
1125
+ "header": "Locating a wallet address",
1126
+ "body1": "Your wallet address is located in the menu. Open the menu by tapping the menu icon in the top left corner.",
1127
+ "body2": "Your wallet address is near the bottom of the menu.",
1128
+ "body3": "Wallet addresses begin with \"0x\" and are 42 characters long"
1129
+ },
1130
+ "transferAddressChanged": "This contact changed their Account Address since the transaction. This payment was sent to:",
1131
+ "addressConfirmed": "Account Address confirmed",
1132
+ "sending": "Sending",
1133
+ "feeActual": "Fees",
1134
+ "feeEstimate": "Estimated Fees",
1135
+ "encryption": {
1136
+ "warningLabel": "This comment will not be encrypted",
1137
+ "warningModalHeader": "About Encryption",
1138
+ "warningModalBody": "Encryption ensures your comments are kept private. {{appName}} uses encryption on transaction comments when both the sender and receiver have this feature set up. Set up will normally occur automatically once a user sends their first transaction.",
1139
+ "feeLabel": "One-Time Encryption Fee",
1140
+ "feeModalHeader": "One-Time Encryption Fee",
1141
+ "feeModalBody": "Encryption helps keep your sensitive data private. A small one-time fee is added to your first transaction to setup encryption. This ensures your comments will be sent securely and privately."
1142
+ },
1143
+ "sendToAddressWarning": {
1144
+ "title": "Sending to an address",
1145
+ "body": "Please make sure this address supports the asset you are trying to send. Your funds may not be recoverable if this address is invalid. Send a test payment first to make sure this is the correct address.",
1146
+ "toggle": "Always remind me"
1147
+ },
1148
+ "loadingFromScan": "Scanning",
1149
+ "loadingFromDeeplink": "Connecting",
1150
+ "action": {
1151
+ "asking": "This application is asking to perform the following action",
1152
+ "askingV1_35": "{{dappName}} is asking to perform the following:",
1153
+ "operation": "Operation",
1154
+ "data": "Data",
1155
+ "sign": "Sign a data payload",
1156
+ "signTransaction": "Sign a transaction",
1157
+ "sendTransaction": "Send a transaction",
1158
+ "decrypt": "Decrypt a data payload",
1159
+ "accounts": "Read your {{appName}} Account Address",
1160
+ "details": "View transaction data",
1161
+ "computeSharedSecret": "Generate Secrets",
1162
+ "emptyMessage": "Empty message"
1163
+ },
1164
+ "walletConnectRequest": {
1165
+ "transactionDataLabel": "Transaction data",
1166
+ "readAccount": "{{dappName}} would like to read your {{appName}} wallet address.",
1167
+ "signPayloadTitle": "Verify wallet",
1168
+ "signPayload": "{{dappName}} would like to verify ownership of your wallet.",
1169
+ "signTransactionTitle": "Sign transaction",
1170
+ "signTransaction": "{{dappName}} would like to sign a transaction.",
1171
+ "signDappTransaction": "{{dappName}} would like to sign a transaction on the {{networkName}} network.",
1172
+ "signDappTransactionUnsupportedNetwork": "{{dappName}} would like to sign a transaction on an unsupported network.",
1173
+ "sendTransactionTitle": "Send transaction",
1174
+ "sendTransaction": "{{dappName}} would like to send a transaction.",
1175
+ "sendDappTransaction": "{{dappName}} would like to send a transaction on the {{networkName}} network.",
1176
+ "sendDappTransactionUnsupportedNetwork": "{{dappName}} would like to send a transaction on an unsupported network.",
1177
+ "sendCallsTitle_one": "Send {{count}} transaction",
1178
+ "sendCallsTitle_few": "Send {{count}} transactions",
1179
+ "sendCallsTitle_many": "Send {{count}} transactions",
1180
+ "sendCallsTitle_other": "Send {{count}} transactions",
1181
+ "sendCalls_one": "{{dappName}} would like to send {{count}} transaction on the {{networkName}} network.",
1182
+ "sendCalls_few": "{{dappName}} would like to send {{count}} transactions on the {{networkName}} network.",
1183
+ "sendCalls_many": "{{dappName}} would like to send {{count}} transactions on the {{networkName}} network.",
1184
+ "sendCalls_other": "{{dappName}} would like to send {{count}} transactions on the {{networkName}} network.",
1185
+ "sendCallsUnknownNetwork_one": "{{dappName}} would like to send {{count}} transaction on an unsupported network.",
1186
+ "sendCallsUnknownNetwork_few": "{{dappName}} would like to send {{count}} transactions on an unsupported network.",
1187
+ "sendCallsUnknownNetwork_other": "{{dappName}} would like to send {{count}} transactions on an unsupported network.",
1188
+ "decryptPayloadTitle": "Decrypt with wallet",
1189
+ "decryptPayload": "{{dappName}} would like to decrypt a data payload.",
1190
+ "computeSharedSecret": "{{dappName}} would like to generate secrets.",
1191
+ "transactionDataCopied": "Transaction data copied",
1192
+ "estimatedNetworkFee": "Estimated {{networkName}} Network Fee",
1193
+ "networksList": "Networks",
1194
+ "connectWalletAction": "Connect wallet",
1195
+ "signTransactionAction": "Sign",
1196
+ "sendTransactionAction": "Send",
1197
+ "unsupportedChain": {
1198
+ "title": "Unsupported chain",
1199
+ "description": "{{dappName}} is requesting this action on a chain not supported by {{appName}}. Please make sure Celo is the active chain on the dapp side.",
1200
+ "descriptionV1_74_one": "{{dappName}} is requesting this action on a chain not supported by {{appName}}. Please make sure {{supportedNetworkNames}} is the active chain on the dapp side.",
1201
+ "descriptionV1_74_few": "{{dappName}} is requesting this action on a chain not supported by {{appName}}. Please make sure the active chain on the dapp is one of the following: {{supportedNetworkNames}}.",
1202
+ "descriptionV1_74_many": "{{dappName}} is requesting this action on a chain not supported by {{appName}}. Please make sure the active chain on the dapp is one of the following: {{supportedNetworkNames}}.",
1203
+ "descriptionV1_74_other": "{{dappName}} is requesting this action on a chain not supported by {{appName}}. Please make sure the active chain on the dapp is one of the following: {{supportedNetworkNames}}."
1204
+ },
1205
+ "notEnoughBalanceForGas": {
1206
+ "title": "Insufficient gas token balance",
1207
+ "description": "You don't have enough {{feeCurrencies}} to cover gas fees. Please add {{feeCurrencies}} to your wallet to complete this transaction."
1208
+ },
1209
+ "failedToPrepareTransaction": {
1210
+ "title": "Failed to prepare transaction",
1211
+ "description": "An error occurred while preparing the transaction. See the underlying error for more details.\n\n\"{{errorMessage}}\""
1212
+ },
1213
+ "nonAtomicExecution": {
1214
+ "title": "Non-atomic execution",
1215
+ "description": "Transactions will be executed sequentially without any atomicity/contiguity guarantees."
1216
+ },
1217
+ "session": {
1218
+ "failUnsupportedNamespace": {
1219
+ "title": "Unsupported chain",
1220
+ "description": "{{dappName}} would like to connect with a chain not supported by {{appName}}. Please make sure Celo is selected on the dapp side.",
1221
+ "descriptionV1_74_one": "{{dappName}} would like to connect with a chain not supported by {{appName}}. Please make sure {{supportedNetworkNames}} is selected on the dapp side.",
1222
+ "descriptionV1_74_few": "{{dappName}} would like to connect with a chain not supported by {{appName}}. Please make sure one of the following is selected on the dapp side: {{supportedNetworkNames}}.",
1223
+ "descriptionV1_74_many": "{{dappName}} would like to connect with a chain not supported by {{appName}}. Please make sure one of the following is selected on the dapp side: {{supportedNetworkNames}}.",
1224
+ "descriptionV1_74_other": "{{dappName}} would like to connect with a chain not supported by {{appName}}. Please make sure one of the following is selected on the dapp side: {{supportedNetworkNames}}."
1225
+ },
1226
+ "warnUnsupportedChains": {
1227
+ "title": "Unsupported chain",
1228
+ "description": "{{dappName}} did not specify Celo as a supported chain. Some features may not work as expected.",
1229
+ "descriptionV1_74_one": "{{dappName}} did not specify {{supportedNetworkNames}} as a supported chain. Some features may not work as expected.",
1230
+ "descriptionV1_74_few": "{{dappName}} did not specify any of the following as supported chains: {{supportedNetworkNames}}. Some features may not work as expected.",
1231
+ "descriptionV1_74_many": "{{dappName}} did not specify any of the following as supported chains: {{supportedNetworkNames}}. Some features may not work as expected.",
1232
+ "descriptionV1_74_other": "{{dappName}} did not specify any of the following as supported chains: {{supportedNetworkNames}}. Some features may not work as expected."
1233
+ },
1234
+ "warnSomeUnsupportedMethods": {
1235
+ "title": "Unsupported methods",
1236
+ "description": "{{dappName}} specified some methods that are not supported by {{appName}}. Some features may not work as expected."
1237
+ },
1238
+ "warnSomeUnsupportedEvents": {
1239
+ "title": "Unsupported events",
1240
+ "description": "{{dappName}} specified some events that are not supported by {{appName}}. Some features may not work as expected."
1241
+ }
1242
+ }
1243
+ },
1244
+ "sessionInfo": "This application may ask to perform the following actions:",
1245
+ "description": {
1246
+ "sign": "Sign Payloads",
1247
+ "signTransaction": "Send funds",
1248
+ "sendTransaction": "Send funds",
1249
+ "accounts": "Read Address",
1250
+ "decrypt": "Decrypt Data",
1251
+ "computeSharedSecret": "Generate a secret"
1252
+ },
1253
+ "tapToDisconnect": "Tap to Disconnect",
1254
+ "sessionsTitle": "Connected Dapps",
1255
+ "sessionsSubTitle": "The following dapps are connected to {{appName}}. You can connect to more dapps by scanning their QR code.",
1256
+ "disconnect": "Disconnect",
1257
+ "disconnectTitle": "Disconnect {{dappName}}?",
1258
+ "disconnectBody": "Are you sure you want to disconnect from {{dappName}}?",
1259
+ "connectionSuccess": "Success! Please go back to {{dappName}} to continue",
1260
+ "inAppConnectionSuccess": "Connection to {{dappName}} was successful!",
1261
+ "timeoutTitle": "Time out!",
1262
+ "timeoutSubtitle": "Your connection timed out. Please check your internet connection & try again",
1263
+ "goBackButton": "Go Back",
1264
+ "v2Unsupported": "This QR code is not supported",
1265
+ "incomingPaymentRequests": "Requests from Others",
1266
+ "incomingPaymentRequestsSummaryTitle": "{{count}} incomplete requests",
1267
+ "incomingPaymentRequestsSummaryDetails_exactly2Items": "<0></0> and <1></1> are waiting for you",
1268
+ "incomingPaymentRequestsSummaryDetails_exactly3Items": "<0></0>, <1></1> and one other are waiting for you",
1269
+ "incomingPaymentRequestsSummaryDetails_moreThan3Items": "<0></0>, <1></1> and others are waiting for you",
1270
+ "outgoingPaymentRequests": "Awaiting Payments",
1271
+ "outgoingPaymentRequestsSummaryTitle": "Waiting for {{count}} Payments",
1272
+ "outgoingPaymentRequestsSummaryDetails_exactly2Items": "You're waiting for payments from <0></0> and <1></1>",
1273
+ "outgoingPaymentRequestsSummaryDetails_exactly3Items": "You're waiting for payments from <0></0>, <1></1> and one other",
1274
+ "outgoingPaymentRequestsSummaryDetails_moreThan3Items": "You're waiting for payments from <0></0>, <1></1> and others",
1275
+ "notifications": "Notifications",
1276
+ "sent": "Sent",
1277
+ "received": "Received",
1278
+ "viewAll": "View All",
1279
+ "noNotificationsPlaceholder": "You're all caught up!",
1280
+ "thanksForVerifying": "Thanks for connecting",
1281
+ "goldIsWhereYouSave": "CELO is where you can save Celo Dollars you have",
1282
+ "dinner": "Dinner",
1283
+ "bikeParts": "Bike Parts",
1284
+ "groceryRun": "Grocery run",
1285
+ "transactionsAreLoading": "Transactions are loading!",
1286
+ "pleaseHoldOn": "Please hold on",
1287
+ "welcomeToCeloPayments": "Welcome to {{appName}}",
1288
+ "letsGetStartedByFirstTransaction": "Let’s get started by sending your first transaction",
1289
+ "sendMoney": "Send Crypto",
1290
+ "verificationFee": "Confirmation Fee",
1291
+ "networkFee": "Network Fee",
1292
+ "networkFeeExplanation": {
1293
+ "0": "Each week, a very small fee (less than 0.01%) of every user's Celo Dollar Balance is used to keep the Celo Dollar's value stable. To learn more about Celo fees, visit the ",
1294
+ "1": "FAQ"
1295
+ },
1296
+ "confirmingTransaction": "Confirming…",
1297
+ "confirmingExchange": "Confirming…",
1298
+ "paymentFailed": "Payment Failed",
1299
+ "loadingActivity": "Loading your activity feed",
1300
+ "errorLoadingActivity": {
1301
+ "0": "Unable to load your feed",
1302
+ "1": "Please try again later"
1303
+ },
1304
+ "noTransactionActivity": "Your activity will appear here",
1305
+ "noExchangeActivity": "Your activity will appear here",
1306
+ "maybeLater": "Maybe Later",
1307
+ "balanceNeedUpdating": "Balance needs updating",
1308
+ "refreshBalances": "Refresh Balances",
1309
+ "escrowedPaymentReminder": "Pending Invites",
1310
+ "escrowedPaymentReminderSummaryTitle": "{{count}} Pending Invites",
1311
+ "escrowedPaymentReminderSummaryDetails_exactly2Items": "<0></0> and <1></1> won’t be able to claim their invites",
1312
+ "escrowedPaymentReminderSummaryDetails_exactly3Items": "<0></0>, <1></1> and one other won’t be able to claim their invites",
1313
+ "escrowedPaymentReminderSummaryDetails_moreThan3Items": "<0></0>, <1></1> and others won’t be able to claim their invites",
1314
+ "escrowedPaymentReminderSmsNoData": "A friendly reminder that you haven't yet redeemed your {{currency}} with {{appName}}! Download the mobile app to get started!",
1315
+ "testnetAlert": {
1316
+ "0": "{{testnet}}",
1317
+ "1": "A friendly reminder you're using the {{testnet}} network build - the balances are not real"
1318
+ },
1319
+ "dollarBalance": "<0></0> $t(celoDollars)",
1320
+ "feedItemAddress": "{{address}}",
1321
+ "feedItemDepositInfo": "{{comment}}",
1322
+ "feedItemDepositInfo_noComment": "Deposit Received",
1323
+ "feedItemDepositTitle": "Deposit",
1324
+ "feedItemFcTransferMobileMoney": "Mobile Money Transfer",
1325
+ "feedItemFcTransferBankAccount": "Bank Account Transfer",
1326
+ "feedItemFcTransferWithdraw": "Withdraw {{crypto}}",
1327
+ "feedItemExchangeTitle": "CELO",
1328
+ "feedItemExchangeInfo_boughtGold": "Bought <0></0> CELO",
1329
+ "feedItemExchangeInfo_soldGold": "Sold <0></0> CELO",
1330
+ "feedItemBoughtCeloTitle": "Purchased CELO",
1331
+ "feedItemSoldCeloTitle": "Sold CELO",
1332
+ "feedItemExchangeCeloInfo": "{{amount}} @ {{price}}",
1333
+ "feedItemVerificationFeeTitle": "Celo",
1334
+ "feedItemVerificationFeeInfo": "$t(verificationFee)",
1335
+ "feedItemNetworkFeeTitle": "Celo",
1336
+ "feedItemNetworkFeeInfo": "Network Fee",
1337
+ "feedItemVerificationRewardTitle": "Celo",
1338
+ "feedItemVerificationRewardInfo": "Confirmer Reward",
1339
+ "feedItemFailedTransaction": "Failed Transaction",
1340
+ "feedItemFaucetTitle": "Celo",
1341
+ "feedItemFaucetInfo": "{{faucet}} Faucet",
1342
+ "feedItemFaucetInfo_noTestnet": "Faucet",
1343
+ "feedItemInviteSentTitle": "Celo",
1344
+ "feedItemInviteSentInfo": "Invited {{nameOrNumber}}",
1345
+ "feedItemInviteSentInfo_noInviteeDetails": "$t(inviteSent)",
1346
+ "feedItemInviteReceivedTitle": "Celo",
1347
+ "feedItemInviteReceivedInfo": "$t(inviteReceived)",
1348
+ "feedItemSentTitle": "{{displayName}}",
1349
+ "feedItemSentInfo": "{{comment}}",
1350
+ "feedItemSentInfo_noComment": "Payment Sent",
1351
+ "feedItemCeloRewardReceivedTitle": "Earned CELO",
1352
+ "feedItemRewardReceivedTitle": "Supercharge",
1353
+ "feedItemRewardReceivedInfo": "Weekly Rewards",
1354
+ "feedItemInviteRewardReceivedTitle": "{{appName}}",
1355
+ "feedItemInviteRewardReceivedInfo": "Reward Received",
1356
+ "feedItemReceivedTitle": "{{displayName}}",
1357
+ "feedItemReceivedInfo": "{{comment}}",
1358
+ "feedItemReceivedInfo_noComment": "Payment Received",
1359
+ "feedItemEscrowSentTitle": "{{nameOrNumber}}",
1360
+ "feedItemEscrowSentTitle_noReceiverDetails": "Unknown",
1361
+ "feedItemEscrowSentInfo": "{{comment}}",
1362
+ "feedItemEscrowSentInfo_noComment": "Invite Sent",
1363
+ "feedItemEscrowReceivedTitle": "{{nameOrNumber}}",
1364
+ "feedItemEscrowReceivedTitle_noSenderDetails": "Unknown",
1365
+ "feedItemEscrowReceivedInfo": "{{comment}}",
1366
+ "feedItemEscrowReceivedInfo_noComment": "Escrow Payment Received",
1367
+ "feedItemGenericTitle": "{{nameOrNumber}}",
1368
+ "feedItemGenericTitle_noRecipientDetails": "Unknown",
1369
+ "feedItemGoldSold": "Sold",
1370
+ "feedItemGoldPurchased": "Purchased",
1371
+ "feedItemGoldWithdrawal": "Withdrawal to {{displayName}}",
1372
+ "feedItemGoldReceived": "Received from {{displayName}}",
1373
+ "feedItemSwapPath": "{{token1}} to {{token2}}",
1374
+ "feedItemJumpstartTitle": "Live Link",
1375
+ "feedItemJumpstartSentSubtitle": "Invitation",
1376
+ "feedItemJumpstartReceivedSubtitle": "Funds received",
1377
+ "transactionHeaderVerificationFee": "Confirmation",
1378
+ "transactionHeaderNetworkFee": "Network",
1379
+ "transactionHeaderFaucet": "Faucet",
1380
+ "transactionHeaderInviteSent": "$t(inviteSent)",
1381
+ "transactionHeaderInviteReceived": "$t(inviteReceived)",
1382
+ "transactionHeaderSent": "Payment Sent",
1383
+ "transactionHeaderWithdrewCelo": "CELO Withdrawal",
1384
+ "transactionHeaderEscrowSent": "Escrow Payment Sent",
1385
+ "transactionHeaderReceived": "Payment Received",
1386
+ "transactionHeaderCeloDeposit": "Deposit Received",
1387
+ "transactionHeaderCeloReward": "Reward Received",
1388
+ "transactionHeaderEscrowReceived": "Escrow Payment Received",
1389
+ "transactionHeaderNftReceived": "NFT Received",
1390
+ "transactionHeaderNftSent": "NFT Sent",
1391
+ "feedSectionHeaderRecent": "Recent",
1392
+ "cashInBottomSheet": {
1393
+ "title": "Add funds to start using {{appName}}!",
1394
+ "subtitle": "Your account is currently empty",
1395
+ "addFunds": "Add Funds",
1396
+ "titleRamp": "Add {{currency}} to start using {{appName}}",
1397
+ "subtitleRamp": "Add funds with low fees through one of our trusted external providers."
1398
+ },
1399
+ "balances": "Assets",
1400
+ "totalBalanceWithLocalCurrencySymbol": "{{localCurrencySymbol}}{{totalBalance}} Total",
1401
+ "totalValue": "Total Balance",
1402
+ "viewBalances": "View Assets",
1403
+ "totalAssets": "My assets",
1404
+ "totalAssetsInfo": "Includes estimated total of wallet assets and dapp positions",
1405
+ "assetsSegmentedControl": {
1406
+ "walletAssets": "Wallet assets",
1407
+ "dappPositions": "Dapp positions"
1408
+ },
1409
+ "open": "Open",
1410
+ "nftViewer": "NFT Viewer",
1411
+ "whatTotalValue": {
1412
+ "title": "What does Total Balance mean?",
1413
+ "body": "Your Total Balance is an approximate sum of all your {{appName}} assets. Your Total Balance will change as prices fluctuate. It is updated every 10 minutes.\nSome assets may not be shown in the Total Balance because the price is unavailable at the time of calculation.",
1414
+ "dismiss": "Dismiss"
1415
+ },
1416
+ "supportExportLogsStart": "Exporting logs...",
1417
+ "supportExportLogsFailed": "Failed to export logs: {{error}}",
1418
+ "supportEmailSubject": "{{appName}} support for {{user}}",
1419
+ "personaAccountEndpointFail": "Identity verification is not currently available. Please try again later",
1420
+ "getBankAccountsFail": "Unable to retrieve your linked bank accounts. Please try again later",
1421
+ "deleteBankAccountFail": "Unable to delete your linked bank account. Please try again later",
1422
+ "linkBankAccountScreen": {
1423
+ "tryAgain": "Try Again",
1424
+ "verifying": {
1425
+ "title": "Verifying your Identity"
1426
+ },
1427
+ "completed": {
1428
+ "title": "Verification complete",
1429
+ "description": "We successfully verified your identity. Please continue to finish linking your bank account.",
1430
+ "descriptionStep2NotEnabled": "We successfully verified your identity. We'll let you know when you can finish linking your bank account.",
1431
+ "descriptionRegionNotSupported": "We successfully verified your identity. Your region is not currently supported. We'll let you know when you can finish linking your bank account."
1432
+ },
1433
+ "failed": {
1434
+ "title": "Verification denied",
1435
+ "description": "We were unable to verify your identity. Please try again or contact support to continue.",
1436
+ "contactSupportPrefill": "My identity verification was denied"
1437
+ },
1438
+ "pending": {
1439
+ "title": "Review in progress",
1440
+ "description": "Your information has been received and is being reviewed."
1441
+ },
1442
+ "begin": {
1443
+ "label": "Step 1",
1444
+ "title": "Verify your Identity",
1445
+ "description": "Adding crypto with a bank account is easy. This step will take about 5 minutes.",
1446
+ "cta": "Begin"
1447
+ },
1448
+ "stepTwo": {
1449
+ "label": "Step 2",
1450
+ "disabledTitle": "Link a bank account",
1451
+ "disabledDescription": "Bank account support coming soon! We'll let you know when you can connect your bank account to {{appName}}.",
1452
+ "disabledCta": "Coming Soon!",
1453
+ "title": "Enter Bank Details",
1454
+ "description": "You're almost done! Enter bank details to link your account to {{appName}}.",
1455
+ "cta": "Link Bank Account",
1456
+ "error": {
1457
+ "title": "Unable to link bank account.",
1458
+ "description": "Please try to link your bank account again, or contact support.",
1459
+ "contactSupportPrefill": "I was unable to link my bank account to {{appName}}"
1460
+ }
1461
+ }
1462
+ },
1463
+ "bankAccountsScreen": {
1464
+ "header": "Linked Bank Accounts",
1465
+ "add": "Add new bank account",
1466
+ "delete": "Delete"
1467
+ },
1468
+ "syncingBankAccount": "Syncing bank account...",
1469
+ "keepAppOpen": "Please keep the app open!",
1470
+ "linkBankAccountSettingsTitle": "Linked Bank Accounts",
1471
+ "linkBankAccountSettingsValue": "Get Access",
1472
+ "linkBankAccountSettingsValue2": "Add New",
1473
+ "connectPhoneNumber": {
1474
+ "title": "Connect phone number to continue",
1475
+ "body": "Your phone number needs to be connected to verify your identity and link your bank account.",
1476
+ "buttonText": "Connect"
1477
+ },
1478
+ "outOfSyncBanner": {
1479
+ "title": "Error fetching tokens.",
1480
+ "message": "Your balances may not be up to date.",
1481
+ "button": "Refresh"
1482
+ },
1483
+ "dappsScreen": {
1484
+ "title": "Dapps",
1485
+ "titleDiscover": "Discover",
1486
+ "exploreDapps": "Dapps",
1487
+ "exploreAll": "View All",
1488
+ "message": "Explore ways to use your assets",
1489
+ "errorMessage": "There was an error loading dapps",
1490
+ "featuredDapp": "Featured",
1491
+ "allDapps": "All",
1492
+ "favoriteDapps": "My Favorites",
1493
+ "mostPopularDapps": "Most Popular",
1494
+ "mostPopularDapps_UK": "Other Dapps",
1495
+ "favoriteDappsAndAll": "My Favorites & All",
1496
+ "searchPlaceHolder": "Search dapps",
1497
+ "noFavorites": {
1498
+ "title": "No favorites added",
1499
+ "description": "Keep track of your most-used Dapps by tapping the star icon to add it as a favorite"
1500
+ },
1501
+ "favoritedDappToast": {
1502
+ "message": "Added as a favorite",
1503
+ "labelCTA": "View Favorites",
1504
+ "messageWithDappName": "{{dappName}} added as a favorite"
1505
+ },
1506
+ "emptyResults": {
1507
+ "message": "<0>{{filter}}</0> filter applied",
1508
+ "removeFilter": "Remove filter",
1509
+ "searchMessage": "No matching results found for <0>\"{{searchTerm}}\"</0>"
1510
+ },
1511
+ "disclaimer_UK": "This is a list of third-party Dapps. The description for each Dapp is purely informational, and not an invitation to use them."
1512
+ },
1513
+ "dappRankings": {
1514
+ "title": "Dapp rankings",
1515
+ "description": "Discover the most favorited dapps by others in the {{appName}} community"
1516
+ },
1517
+ "dappShortcuts": {
1518
+ "rewards": {
1519
+ "title": "Your rewards",
1520
+ "description": "Claim available rewards from open dapp positions"
1521
+ },
1522
+ "claimRewardsScreen": {
1523
+ "title": "Your rewards",
1524
+ "description": "Now you can claim rewards from open dapp positions directly in {{appName}}!",
1525
+ "claimButton": "Claim",
1526
+ "claimedLabel": "Claimed",
1527
+ "rewardLabel": "Available reward",
1528
+ "claimSuccess": "Success! You claimed a reward",
1529
+ "confirmingReward": "CONFIRMING"
1530
+ },
1531
+ "claimRewardFailure": "There was an error claiming your reward, please try again later"
1532
+ },
1533
+ "dappsScreenHelpDialog": {
1534
+ "title": "What are dapps?",
1535
+ "message": "Dapps (decentralized apps) provide new ways to use your crypto, earn rewards, and explore Web3.\n\nConnect {{appName}} to a dapp to get started.",
1536
+ "dismiss": "Dismiss"
1537
+ },
1538
+ "dappsScreenBottomSheet": {
1539
+ "title": "{{dappName}} is an external application",
1540
+ "message": "You are about to open an application not operated by {{appName}}.\n\n{{appName}} makes no representations about this application. Use at your own risk.",
1541
+ "button": "Go to {{dappName}}"
1542
+ },
1543
+ "dappsScreenInfoSheet": {
1544
+ "title": "What is a dapp?",
1545
+ "description": "A dapp (or decentralized application) is an app that is built and run on top of a blockchain network. This means that no single company or organization manages or stores your data.\n\nDapps vary by the services they offer. Examples of these services include decentralized exchanges, lending, borrowing, swapping, storing NFTs.",
1546
+ "buttonLabel": "Tell me more"
1547
+ },
1548
+ "dappsDisclaimerAllDapps": "{{appName}} is not affiliated with these dapps and makes no representations or claims in using them. Please acknowledge the risk before using a dapp by reviewing the user agreement or privacy policy.",
1549
+ "dappsDisclaimerSingleDapp": "{{appName}} is not affiliated with this dapp and makes no representations in using it. Always review a dapp's user agreement or privacy policy.",
1550
+ "dappsDisclaimerUnlistedDapp": "This dapp is not listed in {{appName}}. {{appName}} is not affiliated with this dapp and makes no representations in using it. Always review a dapp's user agreement or privacy policy.",
1551
+ "recentlyUsedDapps": "Recently Used Dapps",
1552
+ "favoritedDapps": "Favorited Dapps",
1553
+ "allDapps": "All Dapps",
1554
+ "rewards": "Rewards",
1555
+ "supercharge": "Supercharge",
1556
+ "others": "Others",
1557
+ "nomSpaceRecipient": "Nomspace: {{name}}",
1558
+ "lastDay": "Last 24 hrs",
1559
+ "noMoreTransactions": "There are no more transactions",
1560
+ "selectProviderScreen": {
1561
+ "somePaymentsUnavailable": "Purchases are powered by our partner providers. Some payment methods are unavailable in your region.",
1562
+ "disclaimerWithSomePaymentsUnavailable": "Payments are powered by network partners. Fees may vary. Some payment methods are unavailable in your region. <0>Learn more.</0>",
1563
+ "disclaimer": "Payments are powered by network partners. Fees may vary. <0>Learn more.</0>",
1564
+ "disclaimerUK": "This is not an invitation to buy cryptoassets. We only provide a list of providers who are selling cryptoassets with price information and a link to their website.",
1565
+ "learnMore": "Learn more.",
1566
+ "whyMissingPayments": "Why don't I see more payment methods?",
1567
+ "dismiss": "Dismiss",
1568
+ "missingPaymentsExplained": "Not all payment methods are available in every country.\n\nAvailability depends on each provider's geographical coverage.",
1569
+ "cryptoExchange": "Cryptocurrency Exchange",
1570
+ "feesVary": "Fees Vary",
1571
+ "viewExchanges": "View Exchanges",
1572
+ "depositFrom": "Deposit from",
1573
+ "cryptoExchangeOrWallet": "Crypto Exchange or Wallet",
1574
+ "card": "Credit / Debit Card",
1575
+ "bank": "Bank Account",
1576
+ "mobileMoney": "Mobile Money",
1577
+ "airtime": "Airtime",
1578
+ "minFee": "Min Fee",
1579
+ "numProviders_one": "{{count}} Provider",
1580
+ "numProviders_few": "{{count}} Providers",
1581
+ "numProviders_many": "{{count}} Providers",
1582
+ "numProviders_other": "{{count}} Providers",
1583
+ "fee": "Fee",
1584
+ "idRequired": "ID Required",
1585
+ "mobileCarrierRequirement": "{{carrier}} Required",
1586
+ "numDays": "1-3 Days",
1587
+ "oneHour": "Less Than 1 Hour",
1588
+ "xHours": "Less Than {{upperBound}} Hours",
1589
+ "xToYHours": "{{lowerBound}}-{{upperBound}} Hours",
1590
+ "xDays": "Less Than {{upperBound}} Days",
1591
+ "xToYDays": "{{lowerBound}}-{{upperBound}} Days",
1592
+ "bestRate": "Best Rate",
1593
+ "header": "Select Payment Method",
1594
+ "newLabel": "NEW",
1595
+ "newDialog": {
1596
+ "title": "New ways to transfer funds",
1597
+ "body": "We are releasing new ways to transfer funds to and from bank accounts, directly from the {{appName}} app.\n\nIf you are seeing this, it means you are able to access this feature in your region.",
1598
+ "dismiss": "Dismiss"
1599
+ },
1600
+ "cashIn": {
1601
+ "amountSpentInfo": "You'll pay <0></0> including fees"
1602
+ },
1603
+ "cashOut": {
1604
+ "amountSpentInfo": "You'll withdraw <0></0> including fees"
1605
+ },
1606
+ "receiveAmount": "Receive <0></0>"
1607
+ },
1608
+ "fiatConnectLinkAccountScreen": {
1609
+ "bankAccount": {
1610
+ "header": "Set up Bank Account",
1611
+ "bodyTitle": "Set Up Bank Account",
1612
+ "description": "Enter Bank Account details to transfer funds. These services will be provided to you by <0>{{providerName}}</0>.\n\nBy clicking continue, you agree to their <1>Terms and Conditions</1> and <2>Privacy Policy</2>"
1613
+ },
1614
+ "mobileMoney": {
1615
+ "header": "Set up Mobile Money",
1616
+ "bodyTitle": "Set Up Mobile Money",
1617
+ "description": "Enter mobile money details to transfer funds. These services will be provided to you by <0>{{providerName}}</0>.\n\nBy clicking continue, you agree to their <1>Terms and Conditions</1> and <2>Privacy Policy</2>"
1618
+ },
1619
+ "continue": "Continue"
1620
+ },
1621
+ "fiatConnectKycLandingScreen": {
1622
+ "stepOne": "Step 1",
1623
+ "stepTwo": "Step 2",
1624
+ "title": "Verify your Identity",
1625
+ "description": "This step will take about 5 minutes.",
1626
+ "disclaimer": "You acknowledge and agree that your Personal Data will be provided to us and shared with third-parties for verification purposes as stated in the <0>Privacy Policy</0>",
1627
+ "button": "Set up ID Verification\n"
1628
+ },
1629
+ "fiatConnectKycStatusScreen": {
1630
+ "contactSupportPrefill": "I'm having trouble verifying my identity with {{appName}}.",
1631
+ "contactSupport": "Contact Support",
1632
+ "pending": {
1633
+ "title": "Your ID verification is in review.",
1634
+ "description": "After the review is complete, you can return to the Add & Withdraw page to complete your transaction.",
1635
+ "close": "Close"
1636
+ },
1637
+ "denied": {
1638
+ "switch": "Switch withdraw method",
1639
+ "retryable": {
1640
+ "title": "ID verification was not accepted.",
1641
+ "description": "Please verify again or try a different way to withdraw funds.",
1642
+ "tryAgain": "Verify again"
1643
+ },
1644
+ "final": {
1645
+ "title": "Verification denied.",
1646
+ "description": "Please try a different way to withdraw funds, or contact support."
1647
+ }
1648
+ },
1649
+ "expired": {
1650
+ "title": "ID verification expired.",
1651
+ "description": "Please verify again or try a different way to withdraw funds.",
1652
+ "tryAgain": "Verify again",
1653
+ "switch": "Switch withdraw method"
1654
+ },
1655
+ "tryAgainFailed": "There was an error clearing KYC information. Please try again",
1656
+ "inactive": {
1657
+ "title": "ID verification is not available",
1658
+ "description": "This payment method requires identity verification to comply with regulations.",
1659
+ "provider": "Provider: {{provider}}",
1660
+ "goBack": "Switch withdraw method"
1661
+ }
1662
+ },
1663
+ "fiatConnectReviewScreen": {
1664
+ "transactionDetails": "Transaction Details",
1665
+ "paymentMethodVia": "Connected via {{providerName}}",
1666
+ "receiveAmount": "You will receive",
1667
+ "bankFeeDisclaimer": "Your bank may charge additional fees for your transfer.",
1668
+ "mobileMoneyFeeDisclaimer": "Your mobile money operator may charge additional fees for your transfer.",
1669
+ "cashIn": {
1670
+ "header": "Review Add Funds",
1671
+ "button": "Add Funds",
1672
+ "transactionDetailsAmount": "Total Deposit",
1673
+ "transactionDetailsAmountConverted": "Amount Deposited",
1674
+ "paymentMethodHeader": "Deposit From"
1675
+ },
1676
+ "cashOut": {
1677
+ "header": "Review",
1678
+ "button": "Withdraw Funds",
1679
+ "transactionDetailsAmount": "Total Withdraw",
1680
+ "transactionDetailsAmountConverted": "Amount Withdrawn",
1681
+ "paymentMethodHeader": "Withdraw To"
1682
+ },
1683
+ "failedRefetch": {
1684
+ "title": "Connection lost!",
1685
+ "description": "We were not able to establish a connection between your accounts.\n\nThis may be due to a poor internet connection or server issue. Please try to reconnect.",
1686
+ "tryAgain": "Try Again"
1687
+ },
1688
+ "quoteExpiredDialog": {
1689
+ "title": "Review amounts & fees",
1690
+ "body": "Crypto amounts & fees can change due to fluctuations in the crypto market.\n\nPlease review your final amount & fees before submitting",
1691
+ "continue": "Continue"
1692
+ }
1693
+ },
1694
+ "fiatConnectStatusScreen": {
1695
+ "tryAgain": "Try Again",
1696
+ "stillProcessing": "We're still processing your transaction. Please wait.",
1697
+ "cashOut": {
1698
+ "cancel": "Cancel Withdrawal",
1699
+ "contactSupportPrefill": "I'm having trouble withdrawing my funds."
1700
+ },
1701
+ "cashIn": {
1702
+ "cancel": "Cancel Add Funds",
1703
+ "contactSupportPrefill": "I'm having trouble adding funds to my {{appName}} wallet."
1704
+ },
1705
+ "success": {
1706
+ "header": "Success",
1707
+ "title": "Your funds are on their way!",
1708
+ "description": "Your transaction request has been sent & your funds will arrive in {{duration}}.",
1709
+ "descriptionWithin1Hour": "Your transaction request has been sent & your funds will arrive within 1 hour.",
1710
+ "descriptionWithinXHours": "Your transaction request has been sent & your funds will arrive within {{upperBound}} hours.",
1711
+ "descriptionInXtoYHours": "Your transaction request has been sent & your funds will arrive in {{lowerBound}}-{{upperBound}} hours.",
1712
+ "descriptionWithinXDays": "Your transaction request has been sent & your funds will arrive within {{upperBound}} days.",
1713
+ "descriptionXtoYDays": "Your transaction request has been sent & your funds will arrive in {{lowerBound}}-{{upperBound}} days.",
1714
+ "baseDescription": "Your transaction request has been sent.",
1715
+ "txDetails": "View on CeloExplorer",
1716
+ "viewOnCeloScan": "View on CeloScan",
1717
+ "continue": "Continue"
1718
+ },
1719
+ "requestNotCompleted": {
1720
+ "title": "Your request could not be completed.",
1721
+ "description": "Your funds were not able to be transferred. Please try again or contact our support team for help."
1722
+ },
1723
+ "txProcessing": {
1724
+ "title": "Your transaction is still processing.",
1725
+ "description": "This might be due to poor internet connection. Check the block explorer for updates."
1726
+ }
1727
+ },
1728
+ "fiatExchangeFlow": {
1729
+ "cashIn": {
1730
+ "fiatExchangeTitle": "Add Funds",
1731
+ "fiatExchangeSubtitle": "Fund your {{appName}} account from a bank, card or exchange.",
1732
+ "selectCurrencyTitle": "Add Funds",
1733
+ "exchangeAmountTitle": "Add {{currency}}",
1734
+ "selectProviderHeader": "Select Payment Method",
1735
+ "selectProviderHeader_UK": "Provider Details",
1736
+ "depositExchangeTitle": "Deposit Crypto"
1737
+ },
1738
+ "cashOut": {
1739
+ "fiatExchangeTitle": "Withdraw Funds",
1740
+ "fiatExchangeSubtitle": "Get funds out of {{appName}} and into a bank account, card, crypto exchange or to mobile money.",
1741
+ "selectCurrencyTitle": "Withdraw Funds",
1742
+ "exchangeAmountTitle": "Withdraw {{currency}}",
1743
+ "selectProviderHeader": "Select Withdraw Method",
1744
+ "withdrawExchangeTitle": "Withdraw Crypto"
1745
+ },
1746
+ "spend": {
1747
+ "fiatExchangeTitle": "Spend Funds",
1748
+ "fiatExchangeSubtitle": "Spend on gift cards and other purchases.",
1749
+ "selectCurrencyTitle": "Spend Funds"
1750
+ },
1751
+ "exchange": {
1752
+ "informational": "To prevent loss of funds, use this address on exchanges or assets compatible with the following networks: <0>{{networks}}</0>",
1753
+ "copyAddress": "Copy Address",
1754
+ "informationText": "Only use exchanges or assets <0>compatible with networks supported by {{appName}}</0> to prevent loss of funds",
1755
+ "bottomSheetTitle": "What exchanges can I use to deposit funds?",
1756
+ "bottomSheetInfo": "Double check that you are sending assets that are compatible with the the networks supported by {{appName}}."
1757
+ }
1758
+ },
1759
+ "fiatDetailsScreen": {
1760
+ "headerBankAccount": "Enter Bank Information",
1761
+ "headerMobileMoney": "Enter Mobile Details",
1762
+ "headerSubTitle": "Powered by {{provider}}",
1763
+ "selectedPaymentOption": "Selected payment option",
1764
+ "addFiatAccountSuccess": "Your account has been connected to {{provider}}.",
1765
+ "addFiatAccountResourceExist": "You have already connected this account to {{provider}}.",
1766
+ "addFiatAccountFailed": "Your account was not connected to {{provider}}, please try again or contact support.",
1767
+ "selectItem": "Select an option...",
1768
+ "selectDone": "Done",
1769
+ "submitAndContinue": "Submit & Continue"
1770
+ },
1771
+ "fiatAccountSchema": {
1772
+ "institutionName": {
1773
+ "label": "Bank Name",
1774
+ "placeholderText": "Enter Bank Name"
1775
+ },
1776
+ "accountNumber": {
1777
+ "label": "Account Number",
1778
+ "placeholderText": "Enter Account Number",
1779
+ "errorMessageDigitLength": "Account number must be {{length}} digits",
1780
+ "errorMessageDigit": "Account number must contain only digits"
1781
+ },
1782
+ "mobileMoney": {
1783
+ "operator": {
1784
+ "label": "Network",
1785
+ "placeholderText": "Enter Mobile Network Operator"
1786
+ },
1787
+ "mobile": {
1788
+ "label": "Phone Number",
1789
+ "placeholderText": "+234123234566",
1790
+ "errorMessage": "Invalid Phone Number format"
1791
+ },
1792
+ "mobileDialog": {
1793
+ "title": "Phone Number",
1794
+ "body": "Use the phone number registered with your mobile money provider. This might not be the same as your {{appName}} phone number.\n\nPhone numbers must include country code displayed next to the phone number.",
1795
+ "dismiss": "Dismiss"
1796
+ }
1797
+ },
1798
+ "ibanNumber": {
1799
+ "label": "IBAN",
1800
+ "placeholderText": "Enter IBAN Number",
1801
+ "errorMessage": "Invalid IBAN"
1802
+ },
1803
+ "ifsc": {
1804
+ "label": "IFSC",
1805
+ "placeholderText": "Enter IFSC",
1806
+ "errorMessage": "Invalid IFSC"
1807
+ },
1808
+ "pix": {
1809
+ "keyType": {
1810
+ "label": "PIX Key Type"
1811
+ },
1812
+ "key": {
1813
+ "placeholderText": "Enter PIX key",
1814
+ "errorMessage": "Invalid PIX key"
1815
+ }
1816
+ }
1817
+ },
1818
+ "webView": {
1819
+ "openExternal": "Open in External Browser"
1820
+ },
1821
+ "dappNotListed": "This dapp is not listed in {{appName}}. Dapps are third party applications. Use at your own risk.",
1822
+ "swapScreen": {
1823
+ "title": "Swap",
1824
+ "review": "Review",
1825
+ "confirmSwap": "Confirm Swap",
1826
+ "confirmSwap_UK": "I Want To Swap",
1827
+ "swapFrom": "FROM",
1828
+ "swapTo": "TO",
1829
+ "insufficientFunds": "Insufficient {{token}} balance. Try a smaller amount or choose a different asset.",
1830
+ "fetchSwapQuoteFailed": "Sorry for the delay! It's taking longer than usual to get the best exchange rate. Please try again in a few minutes.",
1831
+ "disclaimer": "Best rate determined by decentralized sources. <0>Learn more</0>",
1832
+ "disclaimer_UK": "This is not an invitation to sell or buy cryptoassets. By clicking I Want To Swap you are instructing a third party swap router to execute your swap transaction at the best rate. Best rate provided by network partners. <0>Learn more</0>",
1833
+ "swapFromTokenSelection": "SWAP FROM",
1834
+ "swapToTokenSelection": "SWAP TO",
1835
+ "tokenUsdValueUnknown": "-",
1836
+ "unsupportedSwapTokens": "The selected tokens aren't supported by our swap providers.",
1837
+ "selectTokenLabel": "Select token",
1838
+ "tokenBottomSheetTitle": "Select Token",
1839
+ "onNetwork": "on {{networkName}}",
1840
+ "crossChainNotification": "Swapping tokens between different networks",
1841
+ "crossChainFeeWarning": {
1842
+ "title": "You need more {{tokenSymbol}}",
1843
+ "body": "You need more {{tokenSymbol}} on {{networkName}} to pay for cross-chain swap fees. Add {{tokenAmount}} more {{tokenSymbol}} to continue."
1844
+ },
1845
+ "insufficientBalanceWarning": {
1846
+ "title": "You need more {{tokenSymbol}}",
1847
+ "body": "Insufficient {{tokenSymbol}} balance. Try a smaller amount or choose a different asset."
1848
+ },
1849
+ "unsupportedTokensWarning": {
1850
+ "title": "Incompatible Selection",
1851
+ "body": "The tokens selected cannot be swapped for each other. Please choose another token that is compatible with your selection."
1852
+ },
1853
+ "decreaseSwapAmountForGasWarning": {
1854
+ "title": "You need more {{feeTokenSymbol}} for gas",
1855
+ "body": "Add {{feeTokenSymbol}} to cover your gas fees or adjust the amount you are swapping",
1856
+ "cta": "Swap smaller amount"
1857
+ },
1858
+ "switchedToNetworkWarning": {
1859
+ "title": "You switched to the {{networkName}} network",
1860
+ "body_swapFrom": "Select a token to swap from on the {{networkName}} network to continue.",
1861
+ "body_swapTo": "Select a token to swap to on the {{networkName}} network to continue."
1862
+ },
1863
+ "maxSwapAmountWarning": {
1864
+ "title": "Swapping the MAX amount",
1865
+ "titleV1_74": "Swapping the MAX amount",
1866
+ "body": "Make sure you have CELO in your wallet to cover gas fees for future transactions",
1867
+ "bodyV1_74": "Make sure you have {{tokenSymbol}} in your wallet to cover gas fees for future transactions",
1868
+ "learnMore": "Learn more"
1869
+ },
1870
+ "priceImpactWarning": {
1871
+ "title": "Before you swap",
1872
+ "body": "Swapping these assets may result in an unfavorable exchange rate. If you lower the amount, you may get a better rate."
1873
+ },
1874
+ "noUsdPriceWarning": {
1875
+ "title": "{{localCurrency}} price unavailable",
1876
+ "description": "We do not have a {{localCurrency}} price for {{tokenSymbol}}, which might mean that it's not widely traded. {{appName}} is not responsible for any losses incurred if you choose to proceed.",
1877
+ "ctaConfirm": "I understand",
1878
+ "ctaDismiss": "Cancel"
1879
+ },
1880
+ "missingSwapImpactWarning": {
1881
+ "title": "Before you swap",
1882
+ "body": "We can't estimate the value of this swap. {{appName}} is not responsible if you choose to proceed."
1883
+ },
1884
+ "confirmSwapFailedWarning": {
1885
+ "title": "Something went wrong",
1886
+ "body": "The network speed is slow or there is an unknown error. Please try again later"
1887
+ },
1888
+ "estimatedExchangeRate": "Estimated rate ≈ <0>0.00</0>",
1889
+ "needDecreaseSwapAmountForGas": {
1890
+ "title": "Insufficient {{tokenSymbol}} balance",
1891
+ "description": "You don't have enough {{tokenSymbol}} to cover gas fees. Would you like to swap a smaller amount?",
1892
+ "confirmDecreaseButton": "Swap smaller amount"
1893
+ },
1894
+ "notEnoughBalanceForGas": {
1895
+ "title": "Insufficient gas token balance",
1896
+ "description": "You don't have enough {{feeCurrencies}} to cover gas fees. Please add {{feeCurrencies}} to your wallet to complete this swap.",
1897
+ "dismissButton": "Dismiss"
1898
+ },
1899
+ "transactionDetails": {
1900
+ "estimatedNetworkFee": "Estimated Network Fee",
1901
+ "maxNetworkFee": "Max Network Fee",
1902
+ "networkFee": "{{networkName}} Network Fee",
1903
+ "networkFeeNoNetwork": "Network Fee",
1904
+ "swapFee": "{{appName}} Fee",
1905
+ "swapFeeWaived": "Free",
1906
+ "appFee": "{{appName}} Fee",
1907
+ "appFeeValue": "<0></0> <1>(<0></0>)</1>",
1908
+ "appFeeValue_withoutPriceUsd": "<0></0>",
1909
+ "appFeeValue_free": "Free",
1910
+ "appFeeValue_placeholder": "-",
1911
+ "appFeeInfo": "{{appName}} Fee\n\nThe {{appName}} fee of {{appFeePercentage}}% is designed to enhance your experience by ensuring fast, reliable, and secure swaps.",
1912
+ "appFeeInfo_free": "{{appName}} Fee\n\nThis swap is free of charge.",
1913
+ "appFeeInfo_placeholder": "{{appName}} Fee\n\nThe fee is calculated based on the quote you receive.",
1914
+ "appFeeInfoDismissButton": "Got it",
1915
+ "slippagePercentage": "Slippage Tolerance",
1916
+ "networkFeeInfo": "You are swapping on the {{networkName}} Network.\n\nThis estimated network fee is required to conduct a transaction on the {{networkName}} Network. This fee secures your transaction and goes towards keeping the network operational.",
1917
+ "networkFeeInfoV1_76": "You are swapping on the {{networkName}} Network.\n\nA network fee is required to conduct a transaction on the {{networkName}} Network. This fee secures your transaction and is paid to network validators.\n\nSince network conditions determine the exact amount, the listed estimate is what we expect the actual fee to be. The fee will not exceed the max fee amount.",
1918
+ "slippageToleranceInfo": "Slippage tolerance\n\nYour swap will execute within the slippage tolerance percentage. If the price changes more than the slippage tolerance, {{appName}} protects you by preventing the trade from executing.",
1919
+ "slippageToleranceInfoV1_90": "Your swap will execute within the slippage tolerance percentage. If the price changes more than the slippage tolerance, {{appName}} protects you by preventing the trade from executing.",
1920
+ "networkFeeInfoDismissButton": "Got it",
1921
+ "exchangeRate": "Exchange Rate",
1922
+ "exchangeRateInfo": "Exchange Rate\n\nWe've found the best exchange rate for you. Your trade will be completed at a price within {{slippagePercentage}}% of the estimate or the transaction will be cancelled and funds returned to your wallet.",
1923
+ "exchangeRateInfoV1_90": "We've found the best exchange rate for you. Your trade will be completed at a price within {{slippagePercentage}}% of the estimate or the transaction will be cancelled and funds returned to your wallet.",
1924
+ "exchangeRateInfo_withAppFee": "Exchange Rate\n\nWe've found the best exchange rate for you. Your trade will be completed at a price within {{slippagePercentage}}% of the estimate or the transaction will be cancelled & funds returned to your wallet.\n\nThe estimated rate includes a {{appName}} fee of {{appFeePercentage}}%.",
1925
+ "exchangeRateInfoDismissButton": "Got it",
1926
+ "estimatedValue": "Estimated Value",
1927
+ "estimatedTransactionTime": "Estimated Transaction Time",
1928
+ "estimatedTransactionTimeInMinutes": "≈ {{minutes}} min",
1929
+ "estimatedTransactionTimeInfo": "The time to complete the transaction is determined by the provider.\n\nIf you are swapping between different chains, the transaction could take a bit longer to complete.",
1930
+ "infoDismissButton": "Got it",
1931
+ "fees": "Fees",
1932
+ "feesCalculationError": "Unable to calculate fees",
1933
+ "estimatedCrossChainFee": "Estimated cross-chain fees",
1934
+ "maxCrossChainFee": "Max cross-chain fees",
1935
+ "feesBreakdown": "Breakdown",
1936
+ "feeAmount": "≈ {{localCurrencySymbol}}{{feeAmountInLocalCurrency}} ({{tokenAmount}} {{tokenSymbol}})",
1937
+ "feeAmount_noFiatPrice": "{{tokenAmount}} {{tokenSymbol}}",
1938
+ "feesMoreInfoLabel": "More information",
1939
+ "feesInfo_sameChain": "The network fee is required by the network to process the transaction.",
1940
+ "feesInfo_crossChain": "The network fee is required by the network to process the transaction. The cross-chain fee is charged by the cross-chain provider.",
1941
+ "feesInfo_sameChainWithAppFee": "The network fee is required by the network to process the transaction. The {{appName}} fee of {{appFeePercentage}}% is charged for your use of our product.",
1942
+ "feesInfo_crossChainWithAppFee": "The network fee is required by the network to process the transaction. The cross-chain fee is charged by the cross-chain provider. The {{appName}} fee of {{appFeePercentage}}% is charged for your use of our product."
1943
+ },
1944
+ "fundYourWalletBottomSheet": {
1945
+ "title": "Fund your wallet",
1946
+ "description": "Before you can swap tokens you will need to fund your wallet by buying crypto or transferring tokens.",
1947
+ "addFundsButton": "Add Funds"
1948
+ }
1949
+ },
1950
+ "swapUnfavorableRateBottomSheet": {
1951
+ "title": "Are you sure?",
1952
+ "description": "You are about to make a very unfavorable swap. Please confirm that you would like to complete the swap.",
1953
+ "cancel": "Cancel",
1954
+ "confirm": "Slide to Swap",
1955
+ "confirmed": "Swap Confirmed"
1956
+ },
1957
+ "swapTransactionDetailPage": {
1958
+ "swapFrom": "Swap from",
1959
+ "swapTo": "Swap to",
1960
+ "rate": "Rate",
1961
+ "network": "Network",
1962
+ "networkValue": "{{fromNetwork}} → {{toNetwork}}",
1963
+ "estimatedFee": "Est Network Fee",
1964
+ "networkFee": "Network Fee",
1965
+ "viewOnExplorer": "View on CeloExplorer"
1966
+ },
1967
+ "swapReviewScreen": {
1968
+ "title": "Review Swap",
1969
+ "complete": "Complete Swap",
1970
+ "swapFrom": "Swap From",
1971
+ "swapTo": "Swap To",
1972
+ "transactionDetails": "Transaction Details",
1973
+ "estimatedGas": "Estimated Gas",
1974
+ "swapSubmitError": "Sorry, we were unable to complete your swap. Please try again or contact support.",
1975
+ "swapFee": "{{appName}} Fee",
1976
+ "swapFeeTitle": "What is the {{appName}} Fee?",
1977
+ "swapFeeBody": "The {{appName}} fee is the fee that you pay to swap tokens on {{appName}}. \n\n The fee is {{swapFee}}% of the amount you are exchanging. \n\n {{appName}} fees are free for the next few months.",
1978
+ "swapFeeBodyFree": "The {{appName}} fee is the fee that you pay to swap tokens on {{appName}}. {{appName}} fees are free for the next few months.",
1979
+ "estimatedAmountTitle": "Estimated Amount",
1980
+ "estimatedAmountBody": "Conversions take place on a third party decentralized exchange that finds you the best rate for your swap. \n\n Your trade will be completed at a price within {{slippagePercent}}% of the estimate or the transaction will be cancelled & funds returned to your wallet.",
1981
+ "free": "Free"
1982
+ },
1983
+ "SwapExecuteScreen": {
1984
+ "swapPending": "Swap Pending",
1985
+ "swapSuccess": "Swap Successful!",
1986
+ "swapError": "Swap Error",
1987
+ "exchangeRateSubtext": "Finding the best exchange rate...",
1988
+ "approvingSubtext": "Approving funds...",
1989
+ "completingSubtext": "Completing swap...",
1990
+ "swapAgain": "Swap Again",
1991
+ "swapPriceModal": {
1992
+ "title": "Prices have changed",
1993
+ "action": "Continue",
1994
+ "body": "Crypto amounts & fees can change due to fluctuations in the crypto market. \n\n Please review your final amount & fees and resubmit."
1995
+ },
1996
+ "swapCompleteSection": {
1997
+ "title": "Swap successful",
1998
+ "subtitle": "Your swapped assets will appear in your wallet shortly",
1999
+ "done": "Done"
2000
+ },
2001
+ "swapErrorSection": {
2002
+ "title": "We couldn’t complete your swap",
2003
+ "subtitle": "Your assets are safe in your wallet.\nPlease try again.",
2004
+ "contactSupport": "If you need additional help, you can contact\n<0>customer support<0>"
2005
+ },
2006
+ "swapActionBar": {
2007
+ "tryAgain": "Try Again",
2008
+ "done": "Done",
2009
+ "swapAgain": "Swap Again"
2010
+ },
2011
+ "swapErrorModal": {
2012
+ "title": "We couldn’t complete this transaction.",
2013
+ "body": "Please wait and try again later or contact our support team for help.",
2014
+ "swapRestart": "Dismiss",
2015
+ "contactSupport": "Contact Support"
2016
+ }
2017
+ },
2018
+ "inviteModal": {
2019
+ "title": "Looks like {{contactName}} doesn’t have a {{appName}} wallet yet.",
2020
+ "body": "You can still invite them to {{appName}}, or try to send a payment to their wallet address or nom.space.",
2021
+ "sendInviteButtonLabel": "Send Invite",
2022
+ "shareMessage": "Hi! I've been using {{appName}} as my crypto wallet and I want to invite you to check it out. Once you download the app and connect your phone number, we both get a special NFT. Use this link: {{link}}",
2023
+ "rewardsActive": {
2024
+ "title": "Invite {{contactName}} to {{appName}} and you’ll both receive NFTs!",
2025
+ "body": "Looks like {{contactName}} isn't on {{appName}}. You can still send a payment if you know their wallet address, or send an invite instead. \n\n After they download the wallet and connect their phone number, you’ll both get an exclusive NFT."
2026
+ },
2027
+ "rewardsActiveCUSD": {
2028
+ "title": "Invite {{contactName}} to {{appName}} and get 0.50 cUSD",
2029
+ "body": "Looks like {{contactName}} isn’t on {{appName}}. You can still send a payment if you know their wallet address, or send an invite instead. \n\n After they download {{appName}}, connect their phone number, add funds and keep them in their wallet for 7 days, you will both get 0.50 cUSD while funds last."
2030
+ }
2031
+ },
2032
+ "celoNews": {
2033
+ "headerTitle": "Updates",
2034
+ "headerDescription": "Learn about use cases, pilots & technical updates on the Celo blog.",
2035
+ "readMoreButtonText": "Read more on the blog",
2036
+ "loadingError": "Sorry, we couldn't load the latest updates. Please try again later.",
2037
+ "retryButtonText": "Retry"
2038
+ },
2039
+ "chooseYourAdventure": {
2040
+ "header": "Welcome to {{appName}}",
2041
+ "subtitle": "What would you like to do first?",
2042
+ "later": "I'll explore later",
2043
+ "options": {
2044
+ "add": "Review Swap",
2045
+ "dapp": "Find ways to use crypto",
2046
+ "earn": "Explore earning opportunities",
2047
+ "profile": "Build your profile",
2048
+ "learn": "Learn about Celo",
2049
+ "learnPoints": "Learn about {{appName}} Points"
2050
+ }
2051
+ },
2052
+ "reverifyUsingCPVHomecard": {
2053
+ "description": "Reconnect your number to send, receive and get rewards on your crypto",
2054
+ "buttonLabel": "Reconnect number"
2055
+ },
2056
+ "profileScreen": {
2057
+ "generateName": "Generate a name",
2058
+ "namePlaceholder": "Select a name, like \"{{exampleName}}\"",
2059
+ "profilePictureDisclaimer": "Customize {{appName}} with your profile picture. Your image remains private, it is never shared or uploaded."
2060
+ },
2061
+ "tokenBottomSheet": {
2062
+ "searchAssets": "Search Assets",
2063
+ "noTokenInResult": "No matching results found for <0>\"{{searchTerm}}\"</0>",
2064
+ "noFilterSearchResults": "No assets found matching \"{{searchTerm}}\" in the following categories: {{filterNames}}",
2065
+ "noFilterResults": "No assets found matching the following categories: {{filterNames}}",
2066
+ "noSearchResults": "No assets found matching \"{{searchTerm}}\"",
2067
+ "filters": {
2068
+ "myTokens": "My tokens",
2069
+ "popular": "Popular",
2070
+ "recentlySwapped": "Recently swapped",
2071
+ "network": "{{networkName}} Network",
2072
+ "selectNetwork": "Network",
2073
+ "stablecoins": "Stablecoins",
2074
+ "gasTokens": "Gas Tokens",
2075
+ "tokens": "Token"
2076
+ }
2077
+ },
2078
+ "homeActions": {
2079
+ "add": "Buy",
2080
+ "receive": "Receive",
2081
+ "request": "Request",
2082
+ "send": "Send",
2083
+ "swap": "Swap",
2084
+ "withdraw": "Withdraw"
2085
+ },
2086
+ "nftGallery": {
2087
+ "title": "Collectibles",
2088
+ "noNfts": "Your NFTs will display here once you have one in your wallet"
2089
+ },
2090
+ "nftInfoCarousel": {
2091
+ "viewOnCeloExplorer": "View on Celo Explorer",
2092
+ "attributes": "Attributes",
2093
+ "description": "Description",
2094
+ "noNftsFound": "No NFTs found",
2095
+ "nftImageLoadError": "Unable to display this NFT"
2096
+ },
2097
+ "nftsLoadErrorScreen": {
2098
+ "loadErrorTitle": "There is an issue loading NFTs",
2099
+ "loadErrorSubtitle": "Your assets are safe. Please try again.",
2100
+ "contactSupport": "If you need additional help you can \n<0>Contact support</0>"
2101
+ },
2102
+ "hooksPreview": {
2103
+ "modal": {
2104
+ "title": "Hooks Preview Mode",
2105
+ "message": "Please confirm that you'd like to enable preview mode for hooks.\n\nThis feature is only intended for developers building hooks. If you're not a developer or didn't trigger this action, DO NOT CONFIRM.",
2106
+ "cancel": "Cancel",
2107
+ "confirm": "Confirm"
2108
+ },
2109
+ "invalidApiUrl": "Invalid hooks preview API URL",
2110
+ "bannerTitle": "Hooks preview enabled, tap to disable"
2111
+ },
2112
+ "assets": {
2113
+ "claimRewards": "Claim Rewards",
2114
+ "bridge": "Bridged via {{bridge}}",
2115
+ "networkName": "{{networkName}} Network",
2116
+ "tabBar": {
2117
+ "tokens": "Tokens",
2118
+ "collectibles": "Collectibles",
2119
+ "dappPositions": "Dapp Positions"
2120
+ },
2121
+ "importToken": "Import",
2122
+ "importTokens": "Import Tokens"
2123
+ },
2124
+ "notificationCenterSpotlight": {
2125
+ "message": "Introducing a new way to claim rewards, view alerts, and see updates in one place",
2126
+ "cta": "Got it"
2127
+ },
2128
+ "tokenDetails": {
2129
+ "yourBalance": "Your balance",
2130
+ "learnMore": "Learn more about {{tokenName}}",
2131
+ "priceUnavailable": "Price Unavailable",
2132
+ "priceDeltaSuffix": "Today",
2133
+ "actions": {
2134
+ "send": "Send",
2135
+ "swap": "Swap",
2136
+ "add": "Buy",
2137
+ "withdraw": "Withdraw",
2138
+ "more": "More"
2139
+ },
2140
+ "moreActions": "More Actions",
2141
+ "actionDescriptions": {
2142
+ "send": "Use any Celo address, domain, phone number, etc.",
2143
+ "sendV1_74_one": "Use any {{supportedNetworkNames}} address, domain, phone number, etc.",
2144
+ "sendV1_74_few": "Use any address, domain, phone number on the following networks: {{supportedNetworkNames}}",
2145
+ "sendV1_74_many": "Use any address, domain, phone number on the following networks: {{supportedNetworkNames}}",
2146
+ "sendV1_74_other": "Use any address, domain, phone number on the following networks: {{supportedNetworkNames}}",
2147
+ "swap": "Swap your tokens without leaving your wallet",
2148
+ "add": "Buy tokens using one of our trusted providers",
2149
+ "withdraw": "Transfer tokens to a bank account, mobile money, gift card etc."
2150
+ }
2151
+ },
2152
+ "tokenImport": {
2153
+ "title": "Import Token",
2154
+ "notification": "Anyone can create a token, including fake versions of existing tokens. Verify your token address is correct before you import.",
2155
+ "input": {
2156
+ "tokenAddress": "Token Address",
2157
+ "tokenAddressPlaceholder": "0x…",
2158
+ "tokenSymbol": "Token Symbol",
2159
+ "network": "Network"
2160
+ },
2161
+ "error": {
2162
+ "invalidAddress": "Invalid token address. Please review it",
2163
+ "invalidToken": "Invalid token. Try again or contact support",
2164
+ "tokenAlreadySupported": "This token is already supported"
2165
+ },
2166
+ "importSuccess": "Successfully imported {{tokenSymbol}} token",
2167
+ "importButton": "Import"
2168
+ },
2169
+ "sendSelectRecipient": {
2170
+ "searchText": "Search by name, phone, wallet...",
2171
+ "searchInputLabel": "To",
2172
+ "searchInputPlaceholder": "Wallet Address or Phone Number",
2173
+ "searchInputPlaceholderEns": "Wallet Address, Phone Number, or ENS",
2174
+ "paste": "Paste from clipboard",
2175
+ "title": "Select a recipient",
2176
+ "contactsTitle": "Select a contact",
2177
+ "header": "Send",
2178
+ "contactsHeader": "Send to Contacts",
2179
+ "recents": "Recents",
2180
+ "results": "Results",
2181
+ "qr": {
2182
+ "title": "Send via QR Code",
2183
+ "subtitle": "Tap to scan or show an address"
2184
+ },
2185
+ "invite": {
2186
+ "title": "Send to a Contact",
2187
+ "subtitle": "Send funds to your contacts"
2188
+ },
2189
+ "jumpstart": {
2190
+ "title": "Send with a Live Link",
2191
+ "subtitle": "Share a link to send crypto like a text"
2192
+ },
2193
+ "getStarted": {
2194
+ "title": "Ways to send funds on {{appName}}",
2195
+ "subtitle": "GET STARTED",
2196
+ "options": {
2197
+ "one": {
2198
+ "title": "Wallet address",
2199
+ "subtitle": "Enter a network compatible wallet address (ex. 0x123...abcde)"
2200
+ },
2201
+ "two": {
2202
+ "title": "Phone Number",
2203
+ "subtitle": "Send directly to someone's phone number if they have {{appName}}"
2204
+ },
2205
+ "three": {
2206
+ "title": "ENS",
2207
+ "subtitle": "Send assets to someone's ENS handle"
2208
+ },
2209
+ "four": {
2210
+ "title": "Profile Name",
2211
+ "subtitle": "You can search for existing users on {{appName}}"
2212
+ }
2213
+ }
2214
+ },
2215
+ "enableContactsModal": {
2216
+ "title": "Enable contacts to continue",
2217
+ "description": "Please go to settings to update your contacts and start sending to friends"
2218
+ },
2219
+ "connectPhoneNumberModal": {
2220
+ "title": "Connect your phone number",
2221
+ "description": "You need to connect your phone number so you can start sending crypto to your friends"
2222
+ },
2223
+ "unknownAddressInfo": "Please make sure this address supports the asset you are trying to send. Your funds may not be recoverable if this address is invalid.",
2224
+ "buttons": {
2225
+ "send": "Continue",
2226
+ "invite": "Invite"
2227
+ }
2228
+ },
2229
+ "transactionStatus": {
2230
+ "transactionIsCompleted": "Completed",
2231
+ "transactionIsPending": "Pending",
2232
+ "transactionIsFailed": "Failed"
2233
+ },
2234
+ "transactionDetailsActions": {
2235
+ "showCompletedTransactionDetails": "Details",
2236
+ "checkPendingTransactionStatus": "Check Status",
2237
+ "retryFailedTransaction": "Retry"
2238
+ },
2239
+ "viewOnCeloBlockExplorer": "View on CeloExplorer",
2240
+ "viewOnCeloScan": "View on CeloScan",
2241
+ "viewOnEthereumBlockExplorer": "View on Etherscan",
2242
+ "viewOnArbiscan": "View on Arbiscan",
2243
+ "viewOnOPMainnetExplorer": "View on OP Mainnet Explorer",
2244
+ "viewOnOPSepoliaExplorer": "View on OP Sepolia Explorer",
2245
+ "viewOnPolygonPoSScan": "View on PolygonScan",
2246
+ "viewOnBaseScan": "View on BaseScan",
2247
+ "viewOnAxelarScan": "View on AxelarScan",
2248
+ "sendEnterAmountScreen": {
2249
+ "title": "Enter Amount",
2250
+ "selectToken": "Select a Token",
2251
+ "networkFee": "{{networkName}} Network Fee",
2252
+ "networkFeeV1_97": "Network Fee",
2253
+ "lowerAmount": "Enter a lower amount",
2254
+ "maxAmountWarning": {
2255
+ "title": "Sending the maximum amount",
2256
+ "description": "Adjust the amount you are sending to make sure you have enough {{feeTokenSymbol}} for gas"
2257
+ },
2258
+ "notEnoughBalanceForGasWarning": {
2259
+ "title": "You need more {{feeTokenSymbol}} for gas",
2260
+ "description": "Add {{feeTokenSymbol}} to cover your gas fees or adjust the amount you are sending"
2261
+ },
2262
+ "prepareTransactionError": {
2263
+ "title": "Something went wrong!",
2264
+ "description": "It was not possible to prepare a transaction for this token."
2265
+ },
2266
+ "insufficientBalanceWarning": {
2267
+ "title": "You need more {{tokenSymbol}}",
2268
+ "description": "Insufficient {{tokenSymbol}} balance. Try a smaller amount or choose a different asset."
2269
+ }
2270
+ },
2271
+ "jumpstartIntro": {
2272
+ "title": "Share crypto like a text",
2273
+ "description": "Live Links are a way to send crypto on the Celo network to a friend with a link",
2274
+ "noFundsHint": "To get started, you’ll need some assets on Celo in your wallet.",
2275
+ "haveFundsButton": "Send with a Live Link",
2276
+ "addFundsCelo": {
2277
+ "title": "Get Assets on Celo",
2278
+ "info": "Live Links are a way to send crypto on the Celo network to a friend with a link.\nTo get started, you’ll need some CELO assets in your wallet.",
2279
+ "description": "Once you’ve added assets on Celo you’ll have to come back to create a Live Link.",
2280
+ "cta": "Get Assets on Celo",
2281
+ "actionDescriptions": {
2282
+ "add": "Buy assets on Celo using one of our trusted providers",
2283
+ "swap": "Swap into an asset on Celo from another asset",
2284
+ "transfer": "Use any Celo compatible wallet or exchange to deposit assets on Celo"
2285
+ }
2286
+ }
2287
+ },
2288
+ "jumpstartEnterAmountScreen": {
2289
+ "maxAmountWarning": {
2290
+ "title": "You can send up to {{amountInLocalCurrency,currency}} in a link",
2291
+ "description": "This link will be claimable by anyone who has access to it. Make sure you send links to people you trust."
2292
+ }
2293
+ },
2294
+ "jumpstartSendConfirmationScreen": {
2295
+ "title": "Create a Live Link",
2296
+ "sendAmountLabel": "Live Link Amount",
2297
+ "confirmButton": "Send and create link",
2298
+ "info": "When you create a link, funds are withdrawn from your wallet. You can reclaim the link anytime. Share links with care.",
2299
+ "sendError": {
2300
+ "title": "Unable to create link",
2301
+ "description": "Your live link wasn’t created. Please try again.",
2302
+ "ctaLabel": "Dismiss"
2303
+ }
2304
+ },
2305
+ "jumpstartShareLinkScreen": {
2306
+ "title": "Share your Live Link",
2307
+ "description": "Copy the link to send {{tokenSymbol}} via your messaging app of choice, or use the QR code.",
2308
+ "linkLabel": "Live Link",
2309
+ "linkCopiedMessage": "Live Link copied",
2310
+ "navigationWarning": {
2311
+ "title": "Did you share your link?",
2312
+ "description": "Make sure to share this live link or save it somewhere safe.\n\nDon’t worry if it goes unclaimed — you can easily reclaim the funds from your activity feed.",
2313
+ "ctaNavigate": "Go Home"
2314
+ },
2315
+ "ctaShare": "Share Link",
2316
+ "ctaScanQRCode": "Show QR Code",
2317
+ "shareMessage": "Hi! I’m sending you a link funded with {{tokenAmount}} {{tokenSymbol}} on {{appName}}. Use this link to download the app and the funds will be live, waiting for you. {{link}}",
2318
+ "qrCodeBottomSheet": {
2319
+ "title": "Scan the code to receive funds",
2320
+ "description": "Check the status of your funds on the homescreen. Alternatively, copy or share the link below."
2321
+ }
2322
+ },
2323
+ "transactionFeed": {
2324
+ "approvalTransactionTitle": "Approval",
2325
+ "estimatedNetworkFee": "Estimated network fee",
2326
+ "networkFee": "Network fee",
2327
+ "appFee": "App fee",
2328
+ "estimatedCrossChainFee": "Estimated cross-chain fee",
2329
+ "crossChainFee": "Cross-chain fee",
2330
+ "finiteApprovalDescription": "Approved {{approvedAmount}} {{tokenSymbol}} for trade",
2331
+ "infiniteApprovalDescription": "Approved infinite {{tokenSymbol}} for trade",
2332
+ "revokeApprovalDescription": "Revoked {{tokenSymbol}} for trade",
2333
+ "descriptionLabel": "Details",
2334
+ "crossChainSwapTransactionLabel": "Cross-chain",
2335
+ "depositTitle": "Deposited",
2336
+ "depositSubtitle": "to {{txAppName}} Pool",
2337
+ "depositSubtitle_noTxAppName": "to an app",
2338
+ "withdrawTitle": "Withdrew",
2339
+ "withdrawSubtitle": "from {{txAppName}} Pool",
2340
+ "withdrawSubtitle_noTxAppName": "from an app",
2341
+ "claimRewardTitle": "Collected",
2342
+ "claimRewardSubtitle": "from {{txAppName}} Pool",
2343
+ "claimRewardSubtitle_noTxAppName": "from an app",
2344
+ "allTransactionsShown": "You've reached the end of your transaction history.",
2345
+ "fetchErrorRetry": "Try again",
2346
+ "error": {
2347
+ "fetchError": "Oops, there was an issue refreshing your feed. Your transaction history may be incomplete for now."
2348
+ },
2349
+ "noTransactions": "Congratulations, you've successfully created a {{appName}} wallet!"
2350
+ },
2351
+ "transactionDetails": {
2352
+ "descriptionLabel": "Details",
2353
+ "depositTitle": "Deposited",
2354
+ "depositSubtitle": "Deposited {{tokenSymbol}} to {{txAppName}} Pool",
2355
+ "depositSubtitle_noTxAppName": "Deposited {{tokenSymbol}} to an app",
2356
+ "depositDetails": "Amount Deposited",
2357
+ "withdrawTitle": "Withdrew",
2358
+ "withdrawSubtitle": "Withdrew {{tokenSymbol}} from {{txAppName}} Pool",
2359
+ "withdrawSubtitle_noTxAppName": "Withdrew {{tokenSymbol}} from an app",
2360
+ "withdrawDetails": "Amount Withdrawn",
2361
+ "claimRewardTitle": "Collected",
2362
+ "claimRewardSubtitle": "Collected {{tokenSymbol}} from {{txAppName}} Pool",
2363
+ "claimRewardSubtitle_noTxAppName": "Collected {{tokenSymbol}} from an app",
2364
+ "claimRewardDetails": "Amount Collected",
2365
+ "swap": "Swap",
2366
+ "network": "Network",
2367
+ "fees": "Fees"
2368
+ },
2369
+ "getStartedHome": {
2370
+ "title": "Buy crypto or transfer tokens",
2371
+ "body": "Buy or transfer compatible tokens to send crypto and explore web3!",
2372
+ "titleV1_86": "Add funds to your wallet",
2373
+ "exploreTokens": "Explore all tokens",
2374
+ "exploreTokensBody": "You can buy up to 10+ tokens in {{appName}}. Check them out!"
2375
+ },
2376
+ "divviBottomSheet": {
2377
+ "title": "You're now earning divvi slices!",
2378
+ "body_part1": "Great news! Valora has become a part of the",
2379
+ "body_part2": "divvi ecosystem. So, now your actions in the app earn Valora points",
2380
+ "body_part3": "and divvi slices",
2381
+ "body_part4": "Tap below to explore divvi slices and see how many you've been 'divvi'ed up.",
2382
+ "cta": "Learn About divvi Slices"
2383
+ },
2384
+ "nftCelebration": {
2385
+ "bottomSheet": {
2386
+ "title": "Congratulations!",
2387
+ "description": "You’ve earned an exclusive collectible for Early Ethereum Explorers. Welcome to Ethereum on {{appName}}.",
2388
+ "cta": "Thanks!"
2389
+ },
2390
+ "notification": {
2391
+ "title": "A new NFT awaits 🎉",
2392
+ "description": "You can find your new {{rewardName}} NFT under your “Collectibles”"
2393
+ },
2394
+ "rewardBottomSheet": {
2395
+ "title": "Earn $5 of ETH",
2396
+ "description": "Fund your wallet with any Ethereum token by April 4, 2024 at 12:00 PM PDT, and we'll give you $5 of ETH on April 5, 2024 by 11:59 PM PDT.\n\nThis is an exclusive offer for being an Early Ethereum Explorer.",
2397
+ "expirationLabel": "Expires {{expirationLabelText}}",
2398
+ "cta": "Use reward"
2399
+ },
2400
+ "rewardReminderBottomSheet": {
2401
+ "title": "Don't miss out, earn $5 of ETH",
2402
+ "description": "Fund your wallet with any Ethereum token by April 4, 2024 at 12:00 PM PDT, and we'll give you $5 of ETH on April 5, 2024 by 11:59 PM PDT.\n\nThis is an exclusive offer for being an Early Ethereum Explorer.",
2403
+ "expirationLabel": "Expires {{expirationLabelText}}",
2404
+ "cta": "Use reward"
2405
+ }
2406
+ },
2407
+ "pleaseWait": "Please wait",
2408
+ "error": "Error",
2409
+ "linkPhoneNumber": {
2410
+ "title": "Link a phone number to your wallet address",
2411
+ "description": "No more messy wallet addresses! Send crypto to other Celo users with just a phone number",
2412
+ "startButtonLabel": "Link Phone Number",
2413
+ "later": "I'll do this later"
2414
+ },
2415
+ "bottomTabsNavigator": {
2416
+ "wallet": {
2417
+ "tabName": "Wallet",
2418
+ "title": "My Wallet"
2419
+ },
2420
+ "home": {
2421
+ "tabName": "Home",
2422
+ "title": "Welcome"
2423
+ },
2424
+ "discover": {
2425
+ "tabName": "Discover",
2426
+ "title": "Discover"
2427
+ },
2428
+ "earn": {
2429
+ "tabName": "Earn"
2430
+ }
2431
+ },
2432
+ "jumpstartStatus": {
2433
+ "loading": {
2434
+ "title": "Checking on your funds",
2435
+ "description": "Please wait while we check your Live Link. Claimable funds will arrive shortly."
2436
+ },
2437
+ "error": {
2438
+ "title": "Unable to claim funds",
2439
+ "description": "This link was not able to be claimed for an unknown reason",
2440
+ "alreadyClaimedDescription": "The link has already been claimed. Please ask your friend to send a new link",
2441
+ "contactSupport": "Contact Support",
2442
+ "dismiss": "Dismiss"
2443
+ }
2444
+ },
2445
+ "jumpstartReclaim": {
2446
+ "description": "Reclaiming your link incurs a network gas fee, would you like to proceed?",
2447
+ "fetchStatusError": {
2448
+ "title": "Oops, something went wrong",
2449
+ "description": "We could not get the claim status of this invitation, please try again later or contact support",
2450
+ "retryCta": "Retry"
2451
+ },
2452
+ "reclaimError": {
2453
+ "title": "Unable to reclaim funds",
2454
+ "description": "Try to reclaim again, or contact support"
2455
+ }
2456
+ },
2457
+ "multiSelect": {
2458
+ "switchNetwork": "Switch Network",
2459
+ "allNetworks": "All Networks"
2460
+ },
2461
+ "points": {
2462
+ "title": "{{appName}} Points",
2463
+ "activity": "Activity",
2464
+ "history": {
2465
+ "cards": {
2466
+ "createWallet": {
2467
+ "title": "Wallet holder",
2468
+ "subtitle": "Member of {{appName}}"
2469
+ },
2470
+ "swap": {
2471
+ "title": "Swap",
2472
+ "subtitle": "{{fromToken}} to {{toToken}}"
2473
+ },
2474
+ "createLiveLink": {
2475
+ "title": "Live Link",
2476
+ "subtitle": {
2477
+ "erc20": "Sent {{tokenSymbol}}",
2478
+ "erc721": "Sent NFT"
2479
+ }
2480
+ },
2481
+ "depositEarn": {
2482
+ "title": "Deposited",
2483
+ "subtitle": "to {{network}} Pool"
2484
+ }
2485
+ },
2486
+ "title": "My points activity",
2487
+ "error": {
2488
+ "title": "Unable to load points activity",
2489
+ "subtitle": "Oops, something went wrong when trying to load your points activity feed. Please try again.",
2490
+ "tryAgain": "Try again"
2491
+ },
2492
+ "empty": {
2493
+ "title": "No points activity yet",
2494
+ "subtitle": "It looks like you haven't earned any points yet. Use {{appName}} to start earning points!",
2495
+ "gotIt": "Got it"
2496
+ },
2497
+ "pageError": {
2498
+ "title": "Unable to load",
2499
+ "subtitle": "Oops, something went wrong when trying to finish loading. Please try again.",
2500
+ "refresh": "Refresh"
2501
+ }
2502
+ },
2503
+ "fetchBalanceError": {
2504
+ "title": "Unable to load your points",
2505
+ "description": "Oops, something went wrong when trying to load your points. The information on this page may be out of date. Please refresh.",
2506
+ "retryCta": "Refresh"
2507
+ },
2508
+ "loading": {
2509
+ "title": "Gathering your points",
2510
+ "description": "We're in the process of tallying up your points, hang tight"
2511
+ },
2512
+ "error": {
2513
+ "title": "Unable to load points",
2514
+ "description": "Oops, something went wrong when trying to load your points. Please try again.",
2515
+ "retryCta": "Try again"
2516
+ },
2517
+ "infoCard": {
2518
+ "title": "More ways to earn points coming soon",
2519
+ "body": "We are working on adding more ways to earn points through using the app. Keep checking in for updates."
2520
+ },
2521
+ "activitySection": {
2522
+ "title": "How do I earn points?",
2523
+ "body": "It's easy! Earn points by simply using the app."
2524
+ },
2525
+ "noActivities": {
2526
+ "title": "Update to Unlock More Points 🔓",
2527
+ "body": "Oops! It seems you're using an older version of {{appName}}. Update now to discover all the exciting new ways you can earn points."
2528
+ },
2529
+ "activityCards": {
2530
+ "createWallet": {
2531
+ "title": "Create a {{appName}} Wallet"
2532
+ },
2533
+ "swap": {
2534
+ "title": "Swap assets",
2535
+ "bottomSheet": {
2536
+ "title": "Swap assets",
2537
+ "body": "Earn {{pointsValue}} points every time you swap an asset using {{appName}}. \n\nTap below to start swapping and earning!",
2538
+ "cta": "Start a swap"
2539
+ }
2540
+ },
2541
+ "moreComing": {
2542
+ "title": "More coming soon!"
2543
+ },
2544
+ "createLiveLink": {
2545
+ "title": "Send with a Live Link",
2546
+ "bottomSheet": {
2547
+ "title": "Send with a Live Link",
2548
+ "body": "Earn {{pointsValue}} points every time you send funds using a Live Link in {{appName}}. \n\nTap below to start sending and earning!",
2549
+ "cta": "Send with a Live Link"
2550
+ }
2551
+ },
2552
+ "depositEarn": {
2553
+ "title": "Deposit into an earn pool on {{appName}}",
2554
+ "bottomSheet": {
2555
+ "title": "Deposit into an earn pool",
2556
+ "body": "Earn {{pointsValue}} points every time you deposit funds into an earn pool on {{appName}}. \n\nTap below to start earning yield and points!",
2557
+ "cta": "Go to earn pools"
2558
+ }
2559
+ }
2560
+ },
2561
+ "discoverCard": {
2562
+ "title": "{{appName}} Points",
2563
+ "description": "Earn points easily with {{appName}}. Using the app, including swapping, leads to points!",
2564
+ "balance": "{{pointsBalance}} points"
2565
+ },
2566
+ "intro": {
2567
+ "title": "Earn points effortlessly",
2568
+ "description": "Jump into a new way to earn! Your {{appName}} actions now earn points. Start earning today and unlock awesome benefits.",
2569
+ "cta": "Start your points journey"
2570
+ },
2571
+ "disclaimer": {
2572
+ "learnMoreCta": "<0>Learn more</0> about {{appName}} Points",
2573
+ "title": "More About {{appName}} Points",
2574
+ "body": "Points are {{appName}}'s loyalty program. They're awarded for using the app. Points can't be spent, traded, or transferred.",
2575
+ "dismiss": "Got it"
2576
+ }
2577
+ },
2578
+ "earnFlow": {
2579
+ "gasSubsidized": "Transaction fees are covered for a limited time",
2580
+ "addCryptoBottomSheet": {
2581
+ "title": "Add {{tokenSymbol}} on {{tokenNetwork}}",
2582
+ "description": "Once you add tokens you'll have to come back to finish depositing into a pool.",
2583
+ "actions": {
2584
+ "add": "Buy",
2585
+ "transfer": "Transfer",
2586
+ "swap": "Swap"
2587
+ },
2588
+ "actionDescriptions": {
2589
+ "add": "Buy {{tokenSymbol}} on {{tokenNetwork}} using one of our trusted providers",
2590
+ "transfer": "Use any {{tokenNetwork}} compatible wallet or exchange to deposit {{tokenSymbol}}",
2591
+ "swap": "Swap into {{tokenSymbol}} from another {{tokenNetwork}} token"
2592
+ }
2593
+ },
2594
+ "cta": {
2595
+ "title": "Earn on your crypto",
2596
+ "subtitle": "Deposit today and earn returns",
2597
+ "description": "See how much you can earn when supplying a lending pool"
2598
+ },
2599
+ "earnInfo": {
2600
+ "title": "Earn on your\ncrypto",
2601
+ "details": {
2602
+ "earn": {
2603
+ "titleGasSubsidy": "Maximize Earnings without Gas Fees*",
2604
+ "title": "Explore and Compare Pools",
2605
+ "subtitle": "Compare earning potential and risks. Swap, buy, or transfer tokens to join the best pool for you.",
2606
+ "footnoteSubsidy": "*Gas fees are temporarily covered by {{appName}}"
2607
+ },
2608
+ "work": {
2609
+ "title": "Put Your Assets To Work",
2610
+ "subtitle": "Start earning on your crypto by depositing into a liquidity pool. "
2611
+ },
2612
+ "manage": {
2613
+ "title": "Manage Directly from {{appName}}",
2614
+ "titleV1_92": "Manage Directly from {{appName}}",
2615
+ "titleV1_94": "Manage Your Positions",
2616
+ "subtitle": "We'll auto-connect your wallet so you can manage pools without leaving {{appName}}.",
2617
+ "subtitleV1_92": "We'll auto-connect your wallet so you can manage pools without leaving {{appName}}.",
2618
+ "subtitleV1_94": "Choose a pool you like, add your tokens and monitor your gains."
2619
+ },
2620
+ "access": {
2621
+ "title": "Easily Access your Funds",
2622
+ "subtitle": "Collect funds with a tap when you're ready."
2623
+ }
2624
+ },
2625
+ "action": {
2626
+ "learn": "Learn More",
2627
+ "earn": "Start Earning"
2628
+ }
2629
+ },
2630
+ "ctaV1_86": {
2631
+ "title": "Maximize earnings on stablecoins",
2632
+ "subtitle": "Buy {{symbol}}",
2633
+ "description": "Earn approximately {{apy}}% per year when you add {{symbol}} to a pool"
2634
+ },
2635
+ "entrypoint": {
2636
+ "title": "Earn on your crypto",
2637
+ "subtitle": "Deposit and earn",
2638
+ "description": "Earn by lending your crypto assets in liquidity pools.",
2639
+ "totalDepositAndEarnings": "Total Deposit & Earnings"
2640
+ },
2641
+ "enterAmount": {
2642
+ "title": "How much would you like to deposit?",
2643
+ "titleWithdraw": "How much would you like to withdraw?",
2644
+ "deposit": "Deposit",
2645
+ "fees": "Fees",
2646
+ "available": "Available",
2647
+ "swap": "Swap",
2648
+ "estimatedDuration": "Est. Transaction Time",
2649
+ "claimingReward": "Claiming Reward",
2650
+ "earnUpToLabel": "You could earn up to:",
2651
+ "rateLabel": "Rate (est.)",
2652
+ "earnUpTo": "~{{fiatSymbol}}{{amount}} / yr",
2653
+ "earnUpToV1_87": "<0></0> / yr",
2654
+ "rate": "{{rate}}% APY",
2655
+ "continue": "Continue",
2656
+ "info": "This pool is powered by Aave",
2657
+ "infoV1_93": "Powered by {{providerName}}",
2658
+ "notEnoughBalanceForGasWarning": {
2659
+ "title": "You need more {{feeTokenSymbol}} to continue",
2660
+ "description": "Add {{feeTokenSymbol}} on {{network}} to cover your gas fees",
2661
+ "noGasCta": "Buy {{feeTokenSymbol}} on {{network}}"
2662
+ },
2663
+ "feeBottomSheet": {
2664
+ "feeDetails": "Fee Details",
2665
+ "moreInformation": "More information",
2666
+ "estNetworkFee": "Est. Network Fee",
2667
+ "maxNetworkFee": "Max Network Fee",
2668
+ "estCrossChainFee": "Est. Cross-chain Fee",
2669
+ "maxCrossChainFee": "Max Cross-chain Fee",
2670
+ "description_deposit": "The network fee is required by the network to process the deposit transaction.",
2671
+ "description_withdraw": "The network fee is required by the network to process the withdrawal transaction.",
2672
+ "description_depositSwapFee": "The network fee is required by the network to process the deposit transactions. The {{appName}} fee of {{appFeePercentage}}% is charged for your use of our product.",
2673
+ "description_depositCrossChain": "The network fee is required by the network to process the deposit transaction. The cross-chain fee is charged by the cross-chain provider.",
2674
+ "description_depositCrossChainWithSwapFee": "The network fee is required by the network to process the deposit transactions. The {{appName}} fee of {{appFeePercentage}}% is charged for your use of our product. The cross-chain fee is charged by the cross-chain provider.",
2675
+ "appSwapFee": "{{appName}} Fee"
2676
+ },
2677
+ "swapBottomSheet": {
2678
+ "swapDetails": "Swap Details",
2679
+ "swapFrom": "Swap From",
2680
+ "swapTo": "Swap To",
2681
+ "whySwap": "Why am I swapping?",
2682
+ "swapDescription": "To deposit funds into the pool, your token is being swapped into a pool token."
2683
+ },
2684
+ "withdrawingAndClaimingCard": {
2685
+ "title": "Withdrawing and Claiming",
2686
+ "description": "{{providerName}} requires you to claim all available rewards anytime you withdraw."
2687
+ }
2688
+ },
2689
+ "activePools": {
2690
+ "title": "Active Pools",
2691
+ "totalValue": "Total Value:",
2692
+ "apy": "~{{apy}}% APY",
2693
+ "exitPool": "Exit Pool",
2694
+ "depositMore": "Deposit More",
2695
+ "viewPools": "View Pools",
2696
+ "poolsSupplied": "Pools supplied",
2697
+ "totalSupplied": "Total supplied",
2698
+ "depositAndEarnings": "Deposit & Earnings",
2699
+ "myPools": "My Pools",
2700
+ "explore": "Explore Open"
2701
+ },
2702
+ "withdrawConfirmation": {
2703
+ "title": "Review Withdraw",
2704
+ "rewardClaiming": "Reward Claiming",
2705
+ "withdrawing": "Withdrawing",
2706
+ "pool": "{{providerName}} Pool",
2707
+ "yieldRate": "{{apy}}% est. yield rate"
2708
+ },
2709
+ "depositConfirmation": {
2710
+ "title": "Review Deposit",
2711
+ "depositing": "Depositing",
2712
+ "into": "Into",
2713
+ "pool": "{{providerName}} Pool",
2714
+ "yieldRate": "{{apy}}% est. yield rate",
2715
+ "swapAndDeposit": "Swap & Deposit",
2716
+ "disclaimer": "By depositing crypto into an {{providerName}} pool, you accept the risks associated with using {{providerName}}. <0>Terms & Conditions</0>",
2717
+ "noTermsUrlDisclaimer": "You are responsible for your actions in {{appName}}. {{appName}} disclaims all responsibility for your assets or interactions with {{providerName}}. You can review {{providerName}}'s documents <0>here</0> and our Terms & Conditions <1>here</1>."
2718
+ },
2719
+ "swapAndDepositInfoSheet": {
2720
+ "title": "Swap Details",
2721
+ "swapFrom": "Swap From",
2722
+ "swapTo": "Swap To",
2723
+ "whySwap": "Why am I swapping?",
2724
+ "swapDescription": "To deposit funds into the pool, your token is being swapped into a pool token."
2725
+ },
2726
+ "depositBottomSheet": {
2727
+ "title": "Review & Deposit",
2728
+ "description": "Before depositing to an Aave pool, please review the transaction details below",
2729
+ "descriptionV1_93": "Before depositing to an {{providerName}} pool, please review the transaction details below",
2730
+ "amount": "Amount Deposited",
2731
+ "fee": "Est. Gas Fees",
2732
+ "provider": "Earnings provider",
2733
+ "network": "Network",
2734
+ "footer": "By depositing crypto into an Aave pool, you accept the risks associated with using Aave. <0>Terms & Conditions</0>",
2735
+ "footerV1_93": "By depositing crypto into an {{providerName}} pool, you accept the risks associated with using {{providerName}}. <0>Terms & Conditions</0>",
2736
+ "noTermsUrlFooter": "You are responsible for your actions in {{appName}}. {{appName}} disclaims all responsibility for your assets or interactions with {{providerName}}. You can review {{providerName}}'s documents <0>here</0> and our Terms & Conditions <1>here</1>.",
2737
+ "primaryCta": "Complete",
2738
+ "secondaryCta": "Cancel",
2739
+ "yieldRate": "Yield Rate (est.)",
2740
+ "apy": "{{apy}}%"
2741
+ },
2742
+ "collect": {
2743
+ "title": "Congratulations! Review & collect your earnings",
2744
+ "titleClaim": "You’re going to claim:",
2745
+ "titleCollect": "You’re going to collect:",
2746
+ "titleWithdraw": "You’re going to withdraw:",
2747
+ "total": "TOTAL",
2748
+ "plus": "PLUS",
2749
+ "reward": "REWARD",
2750
+ "rate": "Rate (est.)",
2751
+ "apy": "{{apy}}% APY",
2752
+ "fee": "Gas Fee",
2753
+ "cta": "Collect Earnings",
2754
+ "ctaWithdraw": "Withdraw",
2755
+ "ctaReward": "Claim Reward",
2756
+ "ctaExit": "Exit Pool",
2757
+ "errorTitle": "Something went wrong",
2758
+ "errorDescription": "Unable to fetch deposit details. Please try again.",
2759
+ "noGasTitle": "You need more {{symbol}} to continue",
2760
+ "noGasDescription": "Add {{symbol}} on {{network}} to cover your gas fees",
2761
+ "noGasCta": "Buy {{symbol}} on {{network}}"
2762
+ },
2763
+ "transactionFeed": {
2764
+ "earnClaimTitle": "Collected",
2765
+ "earnClaimSubtitle": "from {{providerName}} Pool",
2766
+ "earnDepositTitle": "Deposited",
2767
+ "earnDepositSubtitle": "to {{providerName}} Pool",
2768
+ "earnWithdrawTitle": "Withdrew",
2769
+ "earnWithdrawSubtitle": "from {{providerName}} Pool"
2770
+ },
2771
+ "transactionDetails": {
2772
+ "descriptionLabel": "Details",
2773
+ "earnClaimTitle": "Collected",
2774
+ "earnClaimSubtitle": "Collected {{tokenSymbol}} from {{providerName}} Pool",
2775
+ "earnClaimDetails": "Amount Collected",
2776
+ "earnDepositTitle": "Deposited",
2777
+ "earnDepositSubtitle": "Deposited {{tokenSymbol}} to {{providerName}} Pool",
2778
+ "earnDepositDetails": "Amount Deposited",
2779
+ "earnWithdrawTitle": "Withdrew",
2780
+ "earnWithdrawSubtitle": "Withdrew {{tokenSymbol}} from {{providerName}} Pool",
2781
+ "earnWithdrawDetails": "Amount Withdrawn",
2782
+ "swap": "Swap",
2783
+ "network": "Network",
2784
+ "fees": "Fees"
2785
+ },
2786
+ "home": {
2787
+ "title": "Earn",
2788
+ "learnMore": "<0>Learn more</0> about yield pools.",
2789
+ "learnMoreBottomSheet": {
2790
+ "bottomSheetTitle": "Learn more about yield pools",
2791
+ "apySubtitle": "What is an APY?",
2792
+ "apyDescription": "Annual percentage yield (APY) is a metric used to calculate the annualized return on crypto investments. It's a key indicator of a cryptocurrency's potential return and profitability.",
2793
+ "tvlSubtitle": "What is TVL?",
2794
+ "tvlDescription": "TVL stands for Total Value Locked, and it's a metric used in the crypto industry to measure the value of digital assets locked on a blockchain network. TVL is calculated by adding up the value of all digital assets locked in a DeFi protocol or smart contract. These assets can include cryptocurrencies, stablecoins, and other tokens.",
2795
+ "yieldPoolSubtitle": "What is a yield pool?",
2796
+ "yieldPoolDescription": "Yield pools, or liquidity pools, are pooled funds provided by token holders, which enable trading on decentralized exchanges. When you contribute to the pool, you can earn interest from other people who borrow those funds.",
2797
+ "chooseSubtitle": "How should you choose a pool? ",
2798
+ "chooseDescription": "Any financial decision is a personal choice. We have aggregated some pools across different protocols, but each pool has benefits and risks. We do our best to provide some helpful info for each pool, but it’s always best to do additional research if you’re unsure."
2799
+ },
2800
+ "noPoolsTitle": "You haven’t joined any pools yet",
2801
+ "noPoolsDescription": "Discover available pools, pick one that matches your goals, and make the most of your crypto.",
2802
+ "errorTitle": "Unable to load pools",
2803
+ "errorDescription": "Oops, something went wrong when trying to load the pool information. Please try again.",
2804
+ "errorButton": "Try again"
2805
+ },
2806
+ "poolCard": {
2807
+ "onNetwork": "on {{networkName}}",
2808
+ "rate": "Rate (est.)",
2809
+ "yieldRate": "Yield Rate (est.)",
2810
+ "reward": "Reward",
2811
+ "tvl": "TVL",
2812
+ "exitPool": "Exit Pool",
2813
+ "addToPool": "Add to Pool",
2814
+ "apy": "{{apy}}% APY",
2815
+ "percentage": "{{percentage}}%",
2816
+ "poweredBy": "Powered by {{providerName}}",
2817
+ "deposited": "Supplied",
2818
+ "depositAndEarnings": "Deposit & Earnings",
2819
+ "safety": "Safety"
2820
+ },
2821
+ "poolFilters": {
2822
+ "allPools": "All Pools",
2823
+ "myPools": "My Pools"
2824
+ },
2825
+ "poolInfoScreen": {
2826
+ "chainName": "Chain: <0>{{networkName}}</0>",
2827
+ "protocolName": "Protocol: <0>{{providerName}}</0>",
2828
+ "yieldRate": "Yield Rate",
2829
+ "dailyYieldRate": "Daily Rate",
2830
+ "ratePercent": "{{rate}}%",
2831
+ "rewards": "Rewards",
2832
+ "noRewards": "No rewards",
2833
+ "safetyScore": "Safety Score",
2834
+ "tvl": "TVL",
2835
+ "ageOfPool": "Age of Pool",
2836
+ "learnMoreOnProvider": "View Pool on {{providerName}}",
2837
+ "deposit": "Deposit",
2838
+ "depositAndEarnings": "Deposit & Earnings",
2839
+ "withdraw": "Withdraw",
2840
+ "withdrawBottomSheet": {
2841
+ "title": "Select withdraw type",
2842
+ "withdrawAndClaim": "Withdraw and Claim",
2843
+ "withdrawDescription": "Withdraw a specific amount of any tokens you have deposited in the pool",
2844
+ "withdrawAndClaimRewardsDescription": "Withdraw a specific amount of any tokens you have deposited in the pool and claim your rewards automatically",
2845
+ "withdrawAndClaimEarningsDescription": "Withdraw a specific amount of any tokens you have deposited in the pool and claim your earnings automatically",
2846
+ "claimRewards": "Claim Rewards",
2847
+ "claimRewardsDescription": "Claim your rewards. Partial amounts of the reward cannot be claimed",
2848
+ "claimEarnings": "Claim Earnings",
2849
+ "claimEarningsDescription": "Claim the earnings on your deposit. Partial amounts cannot be claimed",
2850
+ "exit": "Exit",
2851
+ "exitDescription": "Exiting will withdraw everything you have in the pool",
2852
+ "exitWithRewardsDescription": "Exiting will withdraw everything you have in the pool, including rewards",
2853
+ "exitWithEarningsDescription": "Exiting will withdraw everything you have in the pool, including earnings"
2854
+ },
2855
+ "totalDepositAndEarnings": "Total Deposit & Earnings",
2856
+ "titleLocalAmountDisplay": "{{localCurrencySymbol}}{{localCurrencyAmount}}",
2857
+ "lineItemAmountDisplay": "{{localCurrencySymbol}}{{localCurrencyAmount}} ({{cryptoAmount}} {{cryptoSymbol}})",
2858
+ "infoBottomSheet": {
2859
+ "gotIt": "Got it",
2860
+ "depositDescription": "This is your breakdown of your deposited amount, the interest you’e earned on that amount, and any additional rewards you’ve received from participating in the pool.",
2861
+ "depositNoBreakdownDescription": "This number combines your supplied tokens with any interest and rewards you’ve earned.\n\nSome protocols, like {{providerName}}, do not provide a breakdown of your earnings - this is normal. Instead they add your earnings directly to your deposited amount, which continues to earn interest based on the growing amount. ",
2862
+ "tvlTitle": "Total Value Locked (TVL)",
2863
+ "tvlDescription": "TVL refers to the total amount of assets deposited in a liquidity pool and can be used to help indicate the trust and utility of a pool. Typically a higher TVL correlates to reduced risk, however no pool is completely risk free.",
2864
+ "ageTitle": "Age of Pool",
2865
+ "ageDescription": "Older liquidity pools can indicate a solid track record and a history of building community trust. Because of this, some may consider these pools to be safer.\n\nThere is no perfect way to determine risk, so use this info as part of your overall research to make the decision that is best for you.",
2866
+ "yieldRateTitle": "Yield Rate",
2867
+ "yieldRateDescription": "While most pools offer earnings in the form of a liquidity pool token, some give additional token(s) as a reward or added incentive.\n\nSince {{appName}} aggregates pools across multiple protocols, we have combined all the earning and reward rates into a single, overall yield rate to help easily evaluate your earning potential. This number is an estimate since the earning and reward values fluctuate constantly.\n\nFor further information about earning breakdowns you can visit <0>{{providerName}}</0>.",
2868
+ "dailyYieldRateTitle": "Daily Rate",
2869
+ "dailyYieldRateDescription": "The daily rate displayed reflects the daily rate provided by {{providerName}}.",
2870
+ "dailyYieldRateLink": "View More Daily Rate Details On {{providerName}}",
2871
+ "safetyScoreTitle": "Safety Score",
2872
+ "safetyScoreDescription": "The Safety Score breaks down the safety of the underlying vault asset into several key factors. It aims to draw your attention to the risks to consider before investing, and to inform you about technical details that you may not be able to evaluate for yourself.\nThough the full position is always more complicated, the Safety Score is provided to simplify the key risk and safety considerations and kick-start your own due diligence. Our team carefully considers each factor before a vault is deployed, and keeps a watchful eye on each asset, chain and protocol which {{providerName}} has integrated.",
2873
+ "safetyScoreRateLink": "View More Safety Score Details On {{providerName}}"
2874
+ },
2875
+ "viewMoreDetails": "View More Details",
2876
+ "viewLessDetails": "View Less Details"
2877
+ },
2878
+ "beforeDepositBottomSheet": {
2879
+ "youNeedTitle": "You Need {{tokenSymbol}} on {{tokenNetwork}} to Deposit",
2880
+ "depositTitle": "Deposit to pool",
2881
+ "crossChainAlternativeDescription": "If you don’t want to use your tokens on {{tokenNetwork}}, choose an option below. You’ll need to return to complete your pool deposit later.",
2882
+ "alternativeDescription": "If you don’t want to use your tokens, choose an option below. You’ll need to return to complete your pool deposit later.",
2883
+ "beforeYouCanDepositTitle": "Before you can deposit...",
2884
+ "beforeYouCanDepositDescription": "You’ll need to add one of the pool tokens. Once added, you’ll need to return to complete your pool deposit.",
2885
+ "beforeYouCanDepositDescriptionV1_101": "You’ll need to add {{tokenSymbol}} on {{tokenNetwork}}. Once added, you’ll need to return to complete your pool deposit.",
2886
+ "action": {
2887
+ "swapAndDeposit": "Swap & Deposit",
2888
+ "swapAndDepositDescription": "Choose any token on {{tokenNetwork}}. We’ll swap and deposit it simultaneously for you.",
2889
+ "swapAndDepositAllTokensDescription": "Choose any token—we’ll swap and deposit it simultaneously for you.",
2890
+ "crossChainSwap": "Cross-chain Swap",
2891
+ "crossChainSwapDescription": "Swap a token on another network for {{tokenSymbol}}",
2892
+ "swap": "Swap",
2893
+ "swapDescription": "Swap into {{tokenSymbol}} on {{tokenNetwork}} from another token in your wallet",
2894
+ "add": "Buy",
2895
+ "addDescription": "Buy {{tokenSymbol}} on {{tokenNetwork}} using one of our trusted providers",
2896
+ "transfer": "Transfer",
2897
+ "transferDescription": "Use any {{tokenNetwork}} compatible wallet or exchange to deposit {{tokenSymbol}}",
2898
+ "addMore": "Buy more {{tokenSymbol}}",
2899
+ "deposit": "Deposit your {{tokenSymbol}}",
2900
+ "depositDescription": "You have {{amount}} {{tokenSymbol}}"
2901
+ }
2902
+ }
2903
+ },
2904
+ "addFundsActions": {
2905
+ "add": "Buy",
2906
+ "transfer": "Transfer",
2907
+ "swap": "Swap"
2908
+ },
2909
+ "duration_lessThanADay": "Less than a day",
2910
+ "duration_day_one": "1 day",
2911
+ "duration_day_few": "{{count}} days",
2912
+ "duration_day_many": "{{count}} days",
2913
+ "duration_day_other": "{{count}} days",
2914
+ "duration_month_one": "1 month",
2915
+ "duration_month_few": "{{count}} months",
2916
+ "duration_month_many": "{{count}} months",
2917
+ "duration_month_other": "{{count}} months",
2918
+ "duration_year_one": "1 year",
2919
+ "duration_year_few": "{{count}} years",
2920
+ "duration_year_many": "{{count}} years",
2921
+ "duration_year_other": "{{count}} years",
2922
+ "duration_yearMonth_one": "1 year, 1 month",
2923
+ "duration_yearMonth_other": "{{count}} years, {{count2}} months",
2924
+ "tokenEnterAmount": {
2925
+ "availableBalance": "Available: <0></0>",
2926
+ "selectToken": "Select token",
2927
+ "fiatPriceUnavailable": "Price unavailable",
2928
+ "tokenDescription": "{{tokenName}} on {{tokenNetwork}}"
2929
+ },
2930
+ "gasFeeWarning": {
2931
+ "title": "You need more {{tokenSymbol}} for gas fees",
2932
+ "title_Dapp": "You have an insufficient gas token balance",
2933
+ "descriptionMaxAmount_Send": "Add {{tokenSymbol}} for gas fees or lower the amount you're sending",
2934
+ "descriptionMaxAmount_Swap": "Add {{tokenSymbol}} for gas fees or lower the amount you're swapping",
2935
+ "descriptionMaxAmount_Deposit": "Add {{tokenSymbol}} for gas fees or lower the amount you're depositing",
2936
+ "descriptionMaxAmount_Withdraw": "Add {{tokenSymbol}} for gas fees or lower the amount you're withdrawing",
2937
+ "descriptionDapp": "Add {{tokenSymbol}} to complete this transaction",
2938
+ "ctaBuy": "Buy {{tokenSymbol}}",
2939
+ "ctaAction_Send": "Send smaller amount",
2940
+ "ctaAction_Swap": "Swap smaller amount",
2941
+ "ctaAction_Deposit": "Deposit smaller amount",
2942
+ "ctaAction_Withdraw": "Withdraw smaller amount"
2943
+ },
2944
+ "reviewTransaction": {
2945
+ "title": "Review Send",
2946
+ "totalPlusFees": "Total Plus Fees",
2947
+ "totalLessFees": "Total Less Fees",
2948
+ "multipleTokensWithPlusSign": "≈ {{amount1}} {{symbol1}} + {{amount2}} {{symbol2}}"
2949
+ },
2950
+ "maxNetworkFee": "Max Network Fee",
2951
+ "estimatedNetworkFee": "Estimated Network Fee",
2952
+ "fees": "Fees",
2953
+ "appFee": "{{appName}} Fee",
2954
+ "estimatedCrossChainFee": "Estimated cross-chain fees",
2955
+ "maxCrossChainFee": "Max cross-chain fees",
2956
+ "bottomSheetDismissButton": "Got it",
2957
+ "tokenAmount": "{{tokenAmount}} {{tokenSymbol}}",
2958
+ "localAmount": "{{localCurrencySymbol}}{{localAmount}}",
2959
+ "localAmount_noFiatPrice": "Price Unavailable",
2960
+ "tokenAndLocalAmount": "$t(tokenAmount) <0>($t(localAmount))</0>",
2961
+ "tokenAndLocalAmount_noFiatPrice": "$t(tokenAmount)",
2962
+ "tokenAmountApprox": "≈ $t(tokenAmount)",
2963
+ "localAmountApprox": "≈ $t(localAmount)",
2964
+ "localAmountApprox_noFiatPrice": "≈ $t(localAmount_noFiatPrice)",
2965
+ "tokenAndLocalAmountApprox": "≈ $t(tokenAmount) <0>($t(localAmount))</0>",
2966
+ "tokenAndLocalAmountApprox_noFiatPrice": "≈ $t(tokenAmount)",
2967
+ "tokenIntoTokenAmount": "{{tokenAmountFrom}} {{tokenSymbolFrom}} –> {{tokenAmountTo}} {{tokenSymbolTo}}",
2968
+ "moreInformation": "More information",
2969
+ "breakdown": "Breakdown",
2970
+ "gasSubsidized": "Fees are covered for a limited time",
2971
+ "deposit": "Deposit",
2972
+ "feeInfoBottomSheet": {
2973
+ "feesInfo_sameChain": "The network fee is required by the network to process the transaction.",
2974
+ "feesInfo_crossChain": "The network fee is required by the network to process the transaction. The cross-chain fee is charged by the cross-chain provider.",
2975
+ "feesInfo_sameChainWithAppFee": "The network fee is required by the network to process the transaction. The {{appName}} fee of {{appFeePercentage}}% is charged for your use of our product.",
2976
+ "feesInfo_crossChainWithAppFee": "The network fee is required by the network to process the transaction. The cross-chain fee is charged by the cross-chain provider. The {{appName}} fee of {{appFeePercentage}}% is charged for your use of our product."
2977
+ },
2978
+ "demoMode": {
2979
+ "confirmEnter": {
2980
+ "title": "Demo Mode",
2981
+ "info": "You are about to enter into demo mode. You are free to explore the features of the app without completing any transactions",
2982
+ "cta": "Enter Demo"
2983
+ },
2984
+ "confirmExit": {
2985
+ "title": "In Demo Mode",
2986
+ "info": "You are currently viewing the app in demo mode",
2987
+ "cta": "Exit Demo"
2988
+ },
2989
+ "restrictedAccess": {
2990
+ "title": "In Demo Mode",
2991
+ "info": "You can't complete this action because you are viewing the app in demo mode",
2992
+ "cta": "Exit Demo"
2993
+ },
2994
+ "inAppIndicatorLabel": "Demo Mode"
2995
+ },
2996
+ "celoDollarAmount": "<0></0> Celo Dollar",
2997
+ "celoDollarAmount_plural": "<0></0> Celo Dollars"
2998
+ }