Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Wallet] Fix invite flow and i18n texts #5232

Merged
merged 1 commit into from
Sep 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/mobile/locales/en-US/onboarding.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
},
"verificationPrematureRevealMessage": "Please wait one minute before resending",
"verificationLearnMoreDialog": {
"title": "Phone Numbers and Valora",
"body": "Confirming makes it easy to connect with our friends by allowing you to send and receive funds to your phone number.\n\n<0>Can I do this later?</0>\n\nYes, but unconfirmed accounts can only send payments with QR codes or account numbers (addresses).\n\n<1>Secure and Private</1>\n\nValora uses state of the art cryptography to keep your phone number private.",
"title": "Phone Numbers and {{appName}}",
"body": "Confirming makes it easy to connect with your friends by allowing you to send and receive funds to your phone number.\n\n<0>Can I do this later?</0>\n\nYes, but unconfirmed accounts can only send payments with QR codes or account numbers (addresses).\n\n<1>Secure and Private</1>\n\nValora uses state of the art cryptography to keep your phone number private.",
"dismiss": "Dismiss"
},
"importExistingKey": {
Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/locales/es-419/onboarding.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
},
"verificationPrematureRevealMessage": "Por favor espera 1 minuto antes de volver a enviar",
"verificationLearnMoreDialog": {
"title": "Confirmación de número de teléfono",
"body": "La confirmación del número de teléfono funciona asociando tu cuenta con tu número de teléfono.\n\n<0>¿Necesito completar esto?</0>\n\nNo se requiere confirmación, sin embargo, las cuentas no confirmadas solo pueden enviar pagos utilizando direcciones Celo o códigos QR.\n\n<1>Seguridad y privacidad</1>\n\nPara proteger tu privacidad, solo una versión ofuscada de tu número de teléfono se almacena en la cadena de bloques de Celo.",
"title": "Números de teléfono y {{appName}}",
"body": "Confirmar facilita conectar con tus amigos al permitir enviar y recibir dinero usando tu número de teléfono.\n\n<0>¿Puedo hacerlo más tarde?</0>\n\nSi, pero cuentas sin confirmar solo pueden enviar dinero usando códigos QR o números de cuenta (direcciones).\n\n<1>Seguro y Privado</1>\n\nValora usa criptografía de vanguardia para mantener tu número de teléfono privado.",
"dismiss": "Descartar"
},
"importExistingKey": {
Expand Down
1 change: 1 addition & 0 deletions packages/mobile/src/invite/saga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ export function* redeemInviteSaga({ tempAccountPrivateKey }: RedeemInviteAction)
if (result?.success === true) {
Logger.debug(TAG, 'Redeem Invite completed successfully')
yield put(redeemInviteSuccess())
yield put(refreshAllBalances())
navigate(Screens.VerificationEducationScreen)
// Note: We are ok with this succeeding or failing silently in the background,
// user will have another chance to register DEK when sending their first tx
Expand Down