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.
This commit is contained in:
Chris Parker 2024-10-12 00:01:15 -04:00
parent 90644c3514
commit 885f16e15d
No known key found for this signature in database
GPG Key ID: C924FE487A9DA755

View File

@ -322,7 +322,7 @@ public class FiatAccountsView extends PaymentAccountsView<GridPane, FiatAccounts
.onAction(() -> { .onAction(() -> {
final String currencyName = Config.baseCurrencyNetwork().getCurrencyName(); final String currencyName = Config.baseCurrencyNetwork().getCurrencyName();
if (paymentAccount instanceof ClearXchangeAccount) { if (paymentAccount instanceof ClearXchangeAccount) {
new Popup().information(Res.get("payment.clearXchange.info", currencyName, currencyName)) new Popup().information(Res.get("payment.clearXchange.info"))
.width(900) .width(900)
.closeButtonText(Res.get("shared.cancel")) .closeButtonText(Res.get("shared.cancel"))
.actionButtonText(Res.get("shared.iConfirm")) .actionButtonText(Res.get("shared.iConfirm"))
@ -364,14 +364,14 @@ public class FiatAccountsView extends PaymentAccountsView<GridPane, FiatAccounts
.onAction(() -> doSaveNewAccount(paymentAccount)) .onAction(() -> doSaveNewAccount(paymentAccount))
.show(); .show();
} else if (paymentAccount instanceof AustraliaPayidAccount) { } 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) .width(900)
.closeButtonText(Res.get("shared.cancel")) .closeButtonText(Res.get("shared.cancel"))
.actionButtonText(Res.get("shared.iConfirm")) .actionButtonText(Res.get("shared.iConfirm"))
.onAction(() -> doSaveNewAccount(paymentAccount)) .onAction(() -> doSaveNewAccount(paymentAccount))
.show(); .show();
} else if (paymentAccount instanceof AmazonGiftCardAccount) { } 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) .width(900)
.closeButtonText(Res.get("shared.cancel")) .closeButtonText(Res.get("shared.cancel"))
.actionButtonText(Res.get("shared.iUnderstand")) .actionButtonText(Res.get("shared.iUnderstand"))