diff --git a/packages/legacy/core/App/localization/en/index.ts b/packages/legacy/core/App/localization/en/index.ts index 4b43a46ed5..9bb8543c7b 100644 --- a/packages/legacy/core/App/localization/en/index.ts +++ b/packages/legacy/core/App/localization/en/index.ts @@ -419,6 +419,7 @@ const translation = { "DeleteOfferDescription": "Don't recognize the organization? Check your Contacts list. You only receive notifications from Contacts you've initiated", }, "ProofRequest": { + "JustAMoment": "Just a moment while we prepare things for you...", "FromYourWallet": "From your wallet", "MissingCredentials": "Missing credentials", "PredicateGeDate": "is after", diff --git a/packages/legacy/core/App/localization/fr/index.ts b/packages/legacy/core/App/localization/fr/index.ts index 3189c8b95f..6f25e0dfad 100644 --- a/packages/legacy/core/App/localization/fr/index.ts +++ b/packages/legacy/core/App/localization/fr/index.ts @@ -416,6 +416,7 @@ const translation = { "CustomOfferParagraph2": "Vous ne reconnaissez pas l'organisation? Vérifiez votre liste de Contacts. Vous ne recevez des notifications que des Contacts que vous avez initiés." }, "ProofRequest": { + "JustAMoment": "Just a moment while we prepare things for you... (FR)", "FromYourWallet": "From your wallet (FR)", "MissingCredentials": "Missing credentials (FR)", "PredicateGeDate": "is after (FR)", diff --git a/packages/legacy/core/App/localization/pt-br/index.ts b/packages/legacy/core/App/localization/pt-br/index.ts index 35b788518d..f4a2b0aec8 100644 --- a/packages/legacy/core/App/localization/pt-br/index.ts +++ b/packages/legacy/core/App/localization/pt-br/index.ts @@ -400,6 +400,7 @@ const translation = { "CustomOfferParagraph2": "Não reconhece a organização. Verifique sua lista de Contatos. Você só recebe notificões de Contatos que você tenha adicionado.", }, "ProofRequest": { + "JustAMoment": "Just a moment while we prepare things for you... (PT-BR)", "FromYourWallet": "From your wallet (PB)", "MissingCredentials": "Missing credentials (PB)", "PredicateGeDate": "é posterior a", diff --git a/packages/legacy/core/App/screens/ProofRequest.tsx b/packages/legacy/core/App/screens/ProofRequest.tsx index 29f648121f..71e1e42476 100644 --- a/packages/legacy/core/App/screens/ProofRequest.tsx +++ b/packages/legacy/core/App/screens/ProofRequest.tsx @@ -21,6 +21,7 @@ import { CredentialCard } from '../components/misc' import ConnectionAlert from '../components/misc/ConnectionAlert' import ConnectionImage from '../components/misc/ConnectionImage' import CommonRemoveModal from '../components/modals/CommonRemoveModal' +import InfoTextBox from '../components/texts/InfoTextBox' import { EventTypes } from '../constants' import { useAnimatedComponents } from '../contexts/animated-components' import { useConfiguration } from '../contexts/configuration' @@ -393,6 +394,11 @@ const ProofRequest: React.FC = ({ navigation, route }) => { const proofPageHeader = () => { return ( + {attestationLoading && ( + + {t('ProofRequest.JustAMoment')} + + )} {loading || attestationLoading ? (