taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit a9f5560acec129667354f72b54712095f97fd551
parent d245b7b6218d7724ee63bf1fb0a888e4bbfd4bde
Author: Sebastian <sebasjm@gmail.com>
Date:   Sun, 14 Jan 2024 16:03:31 -0300

fix wording, missing strings

Diffstat:
Mpackages/demobank-ui/src/i18n/bank.pot | 4++--
Mpackages/demobank-ui/src/i18n/de.po | 4++--
Mpackages/demobank-ui/src/i18n/en.po | 4++--
Mpackages/demobank-ui/src/i18n/es.po | 6+++---
Mpackages/demobank-ui/src/i18n/fr.po | 4++--
Mpackages/demobank-ui/src/i18n/it.po | 4++--
Mpackages/demobank-ui/src/pages/account/UpdateAccountPassword.tsx | 2+-
7 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/packages/demobank-ui/src/i18n/bank.pot b/packages/demobank-ui/src/i18n/bank.pot @@ -1142,8 +1142,8 @@ msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:76 #, c-format msgid "" -"Old password need to be provided in order to change new one. If you don't have " -"it contact your account administrator." +"You need to provide the old password. If you don't have it contact your account " +"administrator." msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:80 diff --git a/packages/demobank-ui/src/i18n/de.po b/packages/demobank-ui/src/i18n/de.po @@ -1150,8 +1150,8 @@ msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:76 #, c-format msgid "" -"Old password need to be provided in order to change new one. If you don't " -"have it contact your account administrator." +"You need to provide the old password. If you don't have it contact your " +"account administrator." msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:80 diff --git a/packages/demobank-ui/src/i18n/en.po b/packages/demobank-ui/src/i18n/en.po @@ -1148,8 +1148,8 @@ msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:76 #, c-format msgid "" -"Old password need to be provided in order to change new one. If you don't " -"have it contact your account administrator." +"You need to provide the old password. If you don't have it contact your " +"account administrator." msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:80 diff --git a/packages/demobank-ui/src/i18n/es.po b/packages/demobank-ui/src/i18n/es.po @@ -1188,10 +1188,10 @@ msgid "Not authorized to change the password, maybe the session is invalid." msgstr "No está autorizado a cambiar el password, quizá la sesión es invalida." #: src/pages/account/UpdateAccountPassword.tsx:76 -#, c-format +#, fuzzy, c-format msgid "" -"Old password need to be provided in order to change new one. If you don't " -"have it contact your account administrator." +"You need to provide the old password. If you don't have it contact your " +"account administrator." msgstr "" "Se necesita el password viejo para cambiar la contraseña. Si no lo tiene " "contacte a su administrador." diff --git a/packages/demobank-ui/src/i18n/fr.po b/packages/demobank-ui/src/i18n/fr.po @@ -1150,8 +1150,8 @@ msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:76 #, c-format msgid "" -"Old password need to be provided in order to change new one. If you don't " -"have it contact your account administrator." +"You need to provide the old password. If you don't have it contact your " +"account administrator." msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:80 diff --git a/packages/demobank-ui/src/i18n/it.po b/packages/demobank-ui/src/i18n/it.po @@ -1150,8 +1150,8 @@ msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:76 #, c-format msgid "" -"Old password need to be provided in order to change new one. If you don't " -"have it contact your account administrator." +"You need to provide the old password. If you don't have it contact your " +"account administrator." msgstr "" #: src/pages/account/UpdateAccountPassword.tsx:80 diff --git a/packages/demobank-ui/src/pages/account/UpdateAccountPassword.tsx b/packages/demobank-ui/src/pages/account/UpdateAccountPassword.tsx @@ -73,7 +73,7 @@ export function UpdateAccountPassword({ }) case TalerErrorCode.BANK_NON_ADMIN_PATCH_MISSING_OLD_PASSWORD: return notify({ type: "error", - title: i18n.str`Old password need to be provided in order to change new one. If you don't have it contact your account administrator.` + title: i18n.str`You need to provide the old password. If you don't have it contact your account administrator.` }) case TalerErrorCode.BANK_PATCH_BAD_OLD_PASSWORD: return notify({ type: "error",