mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Merge branch 'master' into 6-api-xmr-trading
This commit is contained in:
commit
5f7fd6257b
9 changed files with 3286 additions and 5 deletions
|
@ -43,7 +43,8 @@ public class LanguageUtil {
|
|||
"ja", // Japanese
|
||||
"fa", // Persian
|
||||
"it", // Italian
|
||||
"cs" // Czech
|
||||
"cs", // Czech
|
||||
"pl" // Polish
|
||||
/*
|
||||
// not translated yet
|
||||
"el", // Greek
|
||||
|
@ -54,7 +55,6 @@ public class LanguageUtil {
|
|||
"iw", // Hebrew
|
||||
"hi", // Hindi
|
||||
"ko", // Korean
|
||||
"pl", // Polish
|
||||
"sv", // Swedish
|
||||
"no", // Norwegian
|
||||
"nl", // Dutch
|
||||
|
|
3280
core/src/main/resources/i18n/displayStrings_pl.properties
Normal file
3280
core/src/main/resources/i18n/displayStrings_pl.properties
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
cd $(dirname $0)
|
||||
tx pull -l de,es,ja,pt,ru,zh_CN,zh_TW,vi,th_TH,fa,fr,pt_BR,it,cs
|
||||
tx pull -l de,es,ja,pt,ru,zh_CN,zh_TW,vi,th_TH,fa,fr,pt_BR,it,cs,pl_PL
|
||||
|
||||
translations="translations/bisq-desktop.displaystringsproperties"
|
||||
i18n="src/main/resources/i18n"
|
||||
|
@ -20,5 +20,6 @@ mv "$translations/fr.properties" "$i18n/displayStrings_fr.properties"
|
|||
mv "$translations/pt_BR.properties" "$i18n/displayStrings_pt-br.properties"
|
||||
mv "$translations/it.properties" "$i18n/displayStrings_it.properties"
|
||||
mv "$translations/cs.properties" "$i18n/displayStrings_cs.properties"
|
||||
mv "$translations/pl_PL.properties" "$i18n/displayStrings_pl.properties"
|
||||
|
||||
rm -rf $translations
|
||||
|
|
|
@ -338,7 +338,7 @@ public class UnconfirmedBsqSwapsView extends ActivatableViewAndModel<VBox, Uncon
|
|||
if (bsqSwapTrade.getTxId() != null && bsqSwapTrade.getTxId().contains(filterString)) {
|
||||
return true;
|
||||
}
|
||||
if (bsqSwapTrade.getTradeProtocolModel().getTempTradingPeerNodeAddress().getFullAddress().contains(filterString)) {
|
||||
if (bsqSwapTrade.getTradingPeerNodeAddress().getFullAddress().contains(filterString)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -442,7 +442,7 @@ public class ClosedTradesView extends ActivatableViewAndModel<VBox, ClosedTrades
|
|||
if (bsqSwapTrade.getTxId() != null && bsqSwapTrade.getTxId().contains(filterString)) {
|
||||
return true;
|
||||
}
|
||||
if (bsqSwapTrade.getTradeProtocolModel().getTempTradingPeerNodeAddress().getFullAddress().contains(filterString)) {
|
||||
if (bsqSwapTrade.getTradingPeerNodeAddress().getFullAddress().contains(filterString)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
0
scripts/create_dao_genesis.sh
Normal file → Executable file
0
scripts/create_dao_genesis.sh
Normal file → Executable file
0
scripts/install_java.bat
Normal file → Executable file
0
scripts/install_java.bat
Normal file → Executable file
0
scripts/install_java_linux.sh
Normal file → Executable file
0
scripts/install_java_linux.sh
Normal file → Executable file
0
scripts/install_java_macos.sh
Normal file → Executable file
0
scripts/install_java_macos.sh
Normal file → Executable file
Loading…
Add table
Reference in a new issue