mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Merge pull request #6154 from ripcurlx/minor-translation-and-log-fixes
Minor translation and log fixes
This commit is contained in:
commit
967acb01c7
@ -670,7 +670,7 @@ public class BisqSetup {
|
||||
return;
|
||||
}
|
||||
privateNotificationManager.sendPing(onionAddress, stringResult -> {
|
||||
log.warn(stringResult);
|
||||
log.info(stringResult);
|
||||
if (stringResult.contains("failed")) {
|
||||
firewallIssueHandler.run();
|
||||
}
|
||||
|
@ -302,10 +302,6 @@ market.tabs.spreadPayment=Offers by Payment Method
|
||||
market.tabs.trades=Trades
|
||||
|
||||
# OfferBookChartView
|
||||
market.offerBook.buyAltcoin=Buy {0}
|
||||
market.offerBook.sellAltcoin=Sell {0}
|
||||
market.offerBook.buyWith=Buy {0}
|
||||
market.offerBook.sellWith=Sell {0}
|
||||
market.offerBook.sellOffersHeaderLabel=Sell {0} to
|
||||
market.offerBook.buyOffersHeaderLabel=Buy {0} from
|
||||
market.offerBook.buy=I want to buy bitcoin
|
||||
|
@ -244,10 +244,10 @@ public class OfferBookChartView extends ActivatableViewAndModel<VBox, OfferBookC
|
||||
String viewPriceCurrencyCode = CurrencyUtil.isCryptoCurrency(code) ? Res.getBaseCurrencyCode() : code;
|
||||
|
||||
sellHeaderLabel.setText(Res.get("market.offerBook.sellOffersHeaderLabel", viewBaseCurrencyCode));
|
||||
sellButton.updateText(Res.get("market.offerBook.sellWith", viewBaseCurrencyCode, viewPriceCurrencyCode));
|
||||
sellButton.updateText(Res.get("shared.sellCurrency", viewBaseCurrencyCode, viewPriceCurrencyCode));
|
||||
|
||||
buyHeaderLabel.setText(Res.get("market.offerBook.buyOffersHeaderLabel", viewBaseCurrencyCode));
|
||||
buyButton.updateText(Res.get("market.offerBook.buyWith", viewBaseCurrencyCode, viewPriceCurrencyCode));
|
||||
buyButton.updateText(Res.get("shared.buyCurrency", viewBaseCurrencyCode, viewPriceCurrencyCode));
|
||||
|
||||
priceColumnLabel.set(Res.get("shared.priceWithCur", viewPriceCurrencyCode));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user