From e559ca0d21a366dbe655452e88db8ef093a5c0bb Mon Sep 17 00:00:00 2001 From: Benoit Lavenier <benoit.lavenier@e-is.pro> Date: Mon, 5 Jun 2023 16:20:50 +0200 Subject: [PATCH] fix(i18n) IT and PT i18n labels for "send money" are too long. Use short label instead --- www/i18n/locale-it-IT.json | 2 +- www/i18n/locale-pt-PT.json | 2 +- www/templates/wot/view_identity.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/www/i18n/locale-it-IT.json b/www/i18n/locale-it-IT.json index 50e2ebbf4..fe26b5ce8 100644 --- a/www/i18n/locale-it-IT.json +++ b/www/i18n/locale-it-IT.json @@ -10,7 +10,7 @@ "BTN_YES": "Sì", "BTN_NO": "No", "BTN_SEND": "Inviare", - "BTN_SEND_MONEY": "Effettuare un pagamento", + "BTN_SEND_MONEY": "Pagare", "BTN_SEND_MONEY_SHORT": "Pagare", "BTN_SAVE": "Salvare", "BTN_YES_SAVE": "Sì, salvare", diff --git a/www/i18n/locale-pt-PT.json b/www/i18n/locale-pt-PT.json index abea393ed..1af64cb25 100644 --- a/www/i18n/locale-pt-PT.json +++ b/www/i18n/locale-pt-PT.json @@ -10,7 +10,7 @@ "BTN_YES": "Sim", "BTN_NO": "Não", "BTN_SEND": "Enviar", - "BTN_SEND_MONEY": "Fazer um pagamento", + "BTN_SEND_MONEY": "Pago", "BTN_SEND_MONEY_SHORT": "Pago", "BTN_SAVE": "Guardar", "BTN_YES_SAVE": "Sim, guardar", diff --git a/www/templates/wot/view_identity.html b/www/templates/wot/view_identity.html index dd28c816f..15054260c 100644 --- a/www/templates/wot/view_identity.html +++ b/www/templates/wot/view_identity.html @@ -62,7 +62,7 @@ <button class="button button-calm ink hidden-readonly" ng-click="showTransferModal({pubkey:formData.pubkey, uid: formData.name||formData.uid})"> - {{'COMMON.BTN_SEND_MONEY' | translate}} + {{'COMMON.BTN_SEND_MONEY_SHORT' | translate}} </button> <cs-extension-point name="after-buttons"></cs-extension-point> -- GitLab