From 885f16e15db4ede562cf8e2a7791c78db31f260f Mon Sep 17 00:00:00 2001 From: Chris Parker Date: Sat, 12 Oct 2024 00:01:15 -0400 Subject: [PATCH] Added 500+ string translations to Russian language file Code Review follow-up - Remove substition replacements for strings which do not have any substition parameters, as these are causing confusion as to whether apostrophes are required. --- .../main/account/content/fiataccounts/FiatAccountsView.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/src/main/java/bisq/desktop/main/account/content/fiataccounts/FiatAccountsView.java b/desktop/src/main/java/bisq/desktop/main/account/content/fiataccounts/FiatAccountsView.java index 8778a6b8cf..71f2acc88c 100644 --- a/desktop/src/main/java/bisq/desktop/main/account/content/fiataccounts/FiatAccountsView.java +++ b/desktop/src/main/java/bisq/desktop/main/account/content/fiataccounts/FiatAccountsView.java @@ -322,7 +322,7 @@ public class FiatAccountsView extends PaymentAccountsView { final String currencyName = Config.baseCurrencyNetwork().getCurrencyName(); if (paymentAccount instanceof ClearXchangeAccount) { - new Popup().information(Res.get("payment.clearXchange.info", currencyName, currencyName)) + new Popup().information(Res.get("payment.clearXchange.info")) .width(900) .closeButtonText(Res.get("shared.cancel")) .actionButtonText(Res.get("shared.iConfirm")) @@ -364,14 +364,14 @@ public class FiatAccountsView extends PaymentAccountsView doSaveNewAccount(paymentAccount)) .show(); } else if (paymentAccount instanceof AustraliaPayidAccount) { - new Popup().information(Res.get("payment.payid.info", currencyName, currencyName)) + new Popup().information(Res.get("payment.payid.info")) .width(900) .closeButtonText(Res.get("shared.cancel")) .actionButtonText(Res.get("shared.iConfirm")) .onAction(() -> doSaveNewAccount(paymentAccount)) .show(); } else if (paymentAccount instanceof AmazonGiftCardAccount) { - new Popup().information(Res.get("payment.amazonGiftCard.info", currencyName, currencyName)) + new Popup().information(Res.get("payment.amazonGiftCard.info")) .width(900) .closeButtonText(Res.get("shared.cancel")) .actionButtonText(Res.get("shared.iUnderstand"))