mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
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:
parent
90644c3514
commit
885f16e15d
@ -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"))
|
||||||
|
Loading…
Reference in New Issue
Block a user