mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Add german from old translation (not complete). cleanup
This commit is contained in:
parent
fd5e41fb7e
commit
47839bede7
45 changed files with 1673 additions and 553 deletions
|
@ -21,21 +21,73 @@ import io.bitsquare.user.Preferences;
|
|||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Set;
|
||||
import java.util.*;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
public class LanguageUtil {
|
||||
private static final Logger log = LoggerFactory.getLogger(LanguageUtil.class);
|
||||
|
||||
private static List<String> userLanguageCodes = Arrays.asList(
|
||||
"en", // English
|
||||
"de" // German
|
||||
|
||||
/*
|
||||
// not translated yet
|
||||
"es", // Spanish
|
||||
"zh", // Chinese
|
||||
"pt", // Portuguese
|
||||
"it", // Italian
|
||||
"el", // Greek
|
||||
"fr", // French
|
||||
"sr", // Serbian
|
||||
"ja", // Japanese
|
||||
"iw", // Hebrew
|
||||
"hi", // Hindi
|
||||
"ru", // Russian
|
||||
"ko", // Korean
|
||||
"pl", // Polish
|
||||
"sv", // Swedish
|
||||
"no", // Norwegian
|
||||
"nl", // Dutch
|
||||
"be", // Belarusian
|
||||
"fi", // Finnish
|
||||
"bg", // Bulgarian
|
||||
"lt", // Lithuanian
|
||||
"lv", // Latvian
|
||||
"hr", // Croatian
|
||||
"hu", // Hungarian
|
||||
"uk", // Ukrainian
|
||||
"sk", // Slovak
|
||||
"sl", // Slovenian
|
||||
"ga", // Irish
|
||||
"sq", // Albanian
|
||||
"ca", // Catalan
|
||||
"mk", // Macedonian
|
||||
"kk", // Kazakh
|
||||
"km", // Khmer
|
||||
"sw", // Swahili
|
||||
"in", // Indonesian
|
||||
"ms", // Malay
|
||||
"is", // Icelandic
|
||||
"et", // Estonian
|
||||
"cs", // Czech
|
||||
"ar", // Arabic
|
||||
"vi", // Vietnamese
|
||||
"th", // Thai
|
||||
"da", // Danish
|
||||
"ro", // Romanian
|
||||
"tr", // Turkish
|
||||
"mt" // Maltese
|
||||
*/
|
||||
);
|
||||
|
||||
public static List<String> getAllLanguageCodes() {
|
||||
List<Locale> allLocales = LocaleUtil.getAllLocales();
|
||||
|
||||
// Filter duplicate locale entries
|
||||
Set<String> allLocalesAsSet = allLocales.stream().filter(locale -> !locale.getLanguage().isEmpty() && !locale.getDisplayLanguage().isEmpty())
|
||||
.map(locale -> locale.getLanguage())
|
||||
Set<String> allLocalesAsSet = allLocales.stream().filter(locale -> !locale.getLanguage().isEmpty() &&
|
||||
!locale.getDisplayLanguage().isEmpty())
|
||||
.map(Locale::getLanguage)
|
||||
.collect(Collectors.toSet());
|
||||
|
||||
List<String> allLanguageCodes = new ArrayList<>();
|
||||
|
@ -60,4 +112,8 @@ public class LanguageUtil {
|
|||
public static String getDisplayName(String code) {
|
||||
return new Locale(code.toUpperCase()).getDisplayName(Preferences.getDefaultLocale());
|
||||
}
|
||||
|
||||
public static List<String> getUserLanguageCodes() {
|
||||
return userLanguageCodes;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -57,7 +57,7 @@ public class Res {
|
|||
public static String get(String key) {
|
||||
// TODO remove once translation done
|
||||
// for testing missing translation strings
|
||||
if (true) return "#";
|
||||
//if (true) return "#";
|
||||
try {
|
||||
return resourceBundle.getString(key);
|
||||
} catch (MissingResourceException e) {
|
||||
|
|
|
@ -257,7 +257,7 @@ public class MainViewModel implements ViewModel {
|
|||
MainView.blur();
|
||||
String details;
|
||||
if (!walletInitialized.get()) {
|
||||
details = Res.get("popup.warning.cannotConnectAtStartup", Res.get("shared.bitcoin"));
|
||||
details = Res.get("popup.warning.cannotConnectAtStartup", "bitcoin");
|
||||
} else if (!p2pNetWorkReady.get()) {
|
||||
details = Res.get("popup.warning.cannotConnectAtStartup", Res.get("shared.P2P"));
|
||||
} else {
|
||||
|
@ -745,7 +745,7 @@ public class MainViewModel implements ViewModel {
|
|||
checkNumberOfBtcPeersTimer = UserThread.runAfter(() -> {
|
||||
// check again numPeers
|
||||
if (walletsSetup.numPeersProperty().get() == 0) {
|
||||
walletServiceErrorMsg.set(Res.get("mainView.networkWarning.allConnectionsLost", Res.get("shared.bitcoin")));
|
||||
walletServiceErrorMsg.set(Res.get("mainView.networkWarning.allConnectionsLost", "bitcoin"));
|
||||
} else {
|
||||
walletServiceErrorMsg.set(null);
|
||||
}
|
||||
|
|
|
@ -104,7 +104,7 @@ public class PreferencesView extends ActivatableViewAndModel<GridPane, Activatab
|
|||
this.formatter = formatter;
|
||||
|
||||
blockExplorers = FXCollections.observableArrayList(preferences.getBlockChainExplorers());
|
||||
languageCodes = FXCollections.observableArrayList(LanguageUtil.getAllLanguageCodes());
|
||||
languageCodes = FXCollections.observableArrayList(LanguageUtil.getUserLanguageCodes());
|
||||
countries = FXCollections.observableArrayList(CountryUtil.getAllCountries());
|
||||
fiatCurrencies = preferences.getFiatCurrenciesAsObservable();
|
||||
cryptoCurrencies = preferences.getCryptoCurrenciesAsObservable();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Keep display strings organized by domain
|
||||
# Keep display strings organized by domain
|
||||
# Naming convention: We use camelCase and dot separated name spaces.
|
||||
# Use as many sub spaces as required to make the structure clear, but as little as possible.
|
||||
# E.g.: [main-view].[component].[description]
|
||||
|
@ -36,7 +36,6 @@ shared.sell=sell
|
|||
shared.buying=buying
|
||||
shared.selling=selling
|
||||
shared.spend=spend
|
||||
shared.bitcoin=bitcoin
|
||||
shared.P2P=P2P
|
||||
shared.offers=offers
|
||||
shared.Offer=Offer
|
||||
|
@ -83,13 +82,13 @@ shared.faq=Visit FAQ web page
|
|||
shared.yesCancel=Yes, cancel
|
||||
shared.nextStep=Next step
|
||||
shared.selectTradingAccount=Select trading account
|
||||
shared.fundFromSavingsWalletButton=Transfer funds from Bitsquare wallet
|
||||
shared.fundFromSavingsWalletButton=Transfer funds from bisq wallet
|
||||
shared.fundFromExternalWalletButton=Open your external wallet for funding
|
||||
shared.openDefaultWalletFailed=Opening a default bitcoin wallet application has failed. Perhaps you don't have one installed?
|
||||
shared.distanceInPercent=Distance in % from market price
|
||||
shared.enterPercentageValue=Enter % value
|
||||
shared.OR=OR
|
||||
shared.notEnoughFunds=You don't have enough funds in your Bitsquare wallet.\nYou need {0} but you have only {1} in your Bitsquare wallet.\n\nPlease fund that trade from an external Bitcoin wallet or fund your Bitsquare wallet at \"Funds/Deposit funds\".
|
||||
shared.notEnoughFunds=You don't have enough funds in your bisq wallet.\nYou need {0} but you have only {1} in your bisq wallet.\n\nPlease fund that trade from an external Bitcoin wallet or fund your bisq wallet at \"Funds/Deposit funds\".
|
||||
shared.waitingForFunds=Waiting for funds...
|
||||
shared.depositTransactionId=Deposit transaction ID
|
||||
shared.TheBTCBuyer=The BTC buyer
|
||||
|
@ -289,8 +288,8 @@ offerbook.warning.noMatchingAccount.headline=No matching trading account.
|
|||
offerbook.warning.noMatchingAccount.msg=You don't have a trading account with the payment method required for that offer.\nYou need to setup a trading account with that payment method if you want to take this offer.\nDo you want to do this now?
|
||||
offerbook.warning.wrongTradeProtocol=That offer requires a different protocol version as the one used in your version of the software.\n\nPlease check if you have the latest version installed, otherwise the user who created the offer has used an older version.\n\nUsers cannot trade with an incompatible trade protocol version.
|
||||
offerbook.warning.userIgnored=You have added that user's onion address to your ignore list.
|
||||
offerbook.warning.offerBlocked=That offer was blocked by the Bitsquare developers.\nProbably there is an unhandled bug causing issues when taking that offer.
|
||||
offerbook.warning.nodeBlocked=The onion address of that trader was blocked by the Bitsquare developers.\nProbably there is an unhandled bug causing issues when taking offers from that trader.
|
||||
offerbook.warning.offerBlocked=That offer was blocked by the bisq developers.\nProbably there is an unhandled bug causing issues when taking that offer.
|
||||
offerbook.warning.nodeBlocked=The onion address of that trader was blocked by the bisq developers.\nProbably there is an unhandled bug causing issues when taking offers from that trader.
|
||||
|
||||
|
||||
####################################################################
|
||||
|
@ -317,22 +316,24 @@ createOffer.fundsBox.offerFee=Create offer fee:
|
|||
createOffer.fundsBox.networkFee=Mining fee:
|
||||
createOffer.fundsBox.total=Total:
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
createOffer.success.headline=Your offer has been published
|
||||
createOffer.success.info=You can manage your open offers in the \"Portfolio\" screen under \"My open offers\".
|
||||
createOffer.success.info=You can manage your open offers at \"Portfolio/My open offers\".
|
||||
|
||||
# new entries
|
||||
createOffer.placeOfferButton=Review: Place offer to {0} bitcoin
|
||||
createOffer.alreadyFunded=You had already funded that offer.\nYour funds have been moved to your local Bitsquare wallet and are available for withdrawal in the \"Funds/Available for withdrawal\" screen.
|
||||
createOffer.alreadyFunded=You had already funded that offer.\nYour funds have been moved to your local bisq wallet and are available for withdrawal in the \"Funds/Available for withdrawal\" screen.
|
||||
createOffer.createOfferFundWalletInfo.headline=Fund your offer
|
||||
createOffer.createOfferFundWalletInfo.tradeAmount=- Trade amount: {0} \n
|
||||
createOffer.createOfferFundWalletInfo.msg=You need to deposit {0} to this offer.\n\nThose funds are reserved in your local wallet and will get locked into the Multisig deposit address once someone takes your offer.\n\nThe amount is the sum of:\n{1}- Security deposit: {2}\n- Trading fee: {3}\n- Mining fee: {4}\n\nYou can choose between two options when funding your trade:\n- Use your Bitsquare wallet (convenient, but transactions may be linkable) OR\n- Transfer from an external wallet (potentially more private)\n\nYou will see all funding options and details after closing this popup.
|
||||
createOffer.createOfferFundWalletInfo.msg=You need to deposit {0} to this offer.\n\nThose funds are reserved in your local wallet and will get locked into the Multisig deposit address once someone takes your offer.\n\nThe amount is the sum of:\n{1}- Security deposit: {2}\n- Trading fee: {3}\n- Mining fee: {4}\n\nYou can choose between two options when funding your trade:\n- Use your bisq wallet (convenient, but transactions may be linkable) OR\n- Transfer from an external wallet (potentially more private)\n\nYou will see all funding options and details after closing this popup.
|
||||
|
||||
|
||||
# only first part "An error occurred when placing the offer:" has been used before. We added now the rest (need update in existing translations!)
|
||||
createOffer.amountPriceBox.error.message=An error occurred when placing the offer:\n\n{0}\n\nNo funds have left your wallet yet.\nPlease try to restart your application and check your network connection to see if you can resolve the issue.
|
||||
createOffer.amountPriceBox.error.message=An error occurred when placing the offer:\n\n{0}\n\n\
|
||||
No funds have left your wallet yet.\n\
|
||||
Please restart your application and check your network connection.
|
||||
createOffer.setAmountPrice=Set amount and price
|
||||
createOffer.warnCancelOffer=You have already funded that offer.\nIf you cancel now, your funds will be moved to your local Bitsquare wallet and are available for withdrawal in the \"Funds/Available for withdrawal\" screen.\nAre you sure you want to cancel?
|
||||
createOffer.warnCancelOffer=You have already funded that offer.\nIf you cancel now, your funds will be moved to your local bisq wallet and are available for withdrawal in the \"Funds/Available for withdrawal\" screen.\nAre you sure you want to cancel?
|
||||
createOffer.fixed=Fixed
|
||||
createOffer.percentage=Percentage
|
||||
createOffer.timeoutAtPublishing=A timeout occurred at publishing the offer.
|
||||
|
@ -370,22 +371,22 @@ takeOffer.fundsBox.offerFee=Take offer fee:
|
|||
takeOffer.fundsBox.networkFee=Mining fees (3x):
|
||||
takeOffer.fundsBox.total=Total:
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
takeOffer.success.headline=You have successfully taken an offer.
|
||||
takeOffer.success.info=You can see the status of your trade at the \"Portfolio\" screen under \"Open trades\".
|
||||
takeOffer.success.info=You can see the status of your trade at \"Portfolio/Open trades\".
|
||||
takeOffer.error.message=An error occurred when taking the offer.\n\n{0}
|
||||
|
||||
# new entries
|
||||
takeOffer.takeOfferButton=Review: Take offer to {0} bitcoin
|
||||
takeOffer.noPriceFeedAvailable=You cannot take that offer as it uses a percentage price based on the market price but there is no price feed available.
|
||||
takeOffer.alreadyFunded.movedFunds=You had already funded that offer.\nYour funds have been moved to your local Bitsquare wallet and are available for withdrawal in the \"Funds/Available for withdrawal\" screen.
|
||||
takeOffer.alreadyFunded.movedFunds=You had already funded that offer.\nYour funds have been moved to your local bisq wallet and are available for withdrawal in the \"Funds/Available for withdrawal\" screen.
|
||||
takeOffer.takeOfferFundWalletInfo.headline=Fund your trade
|
||||
takeOffer.takeOfferFundWalletInfo.tradeAmount=- Trade amount: {0} \n
|
||||
takeOffer.takeOfferFundWalletInfo.msg=You need to deposit {0} for taking this offer.\n\nThe amount is the sum of:\n{1}- Security deposit: {2}\n- Trading fee: {3}\n- Mining fee (3x): {4}\n\nYou can choose between two options when funding your trade:\n- Use your Bitsquare wallet (convenient, but transactions may be linkable) OR\n- Transfer from an external wallet (potentially more private)\n\nYou will see all funding options and details after closing this popup.
|
||||
takeOffer.takeOfferFundWalletInfo.msg=You need to deposit {0} for taking this offer.\n\nThe amount is the sum of:\n{1}- Security deposit: {2}\n- Trading fee: {3}\n- Mining fee (3x): {4}\n\nYou can choose between two options when funding your trade:\n- Use your bisq wallet (convenient, but transactions may be linkable) OR\n- Transfer from an external wallet (potentially more private)\n\nYou will see all funding options and details after closing this popup.
|
||||
takeOffer.alreadyPaidInFunds=If you have already paid in funds you can withdraw it in the \"Funds/Available for withdrawal\" screen.
|
||||
takeOffer.paymentInfo=Payment info
|
||||
takeOffer.setAmountPrice=Set amount and price
|
||||
takeOffer.alreadyFunded.askCancel=You have already funded that offer.\nIf you cancel now, your funds will be moved to your local Bitsquare wallet and are available for withdrawal in the \"Funds/Available for withdrawal\" screen.\nAre you sure you want to cancel?
|
||||
takeOffer.alreadyFunded.askCancel=You have already funded that offer.\nIf you cancel now, your funds will be moved to your local bisq wallet and are available for withdrawal in the \"Funds/Available for withdrawal\" screen.\nAre you sure you want to cancel?
|
||||
takeOffer.failed.offerNotAvailable=Take offer request failed because the offer is not available anymore. Maybe another trader has taken the offer in the meantime.
|
||||
takeOffer.failed.offerTaken=TYou cannot take that offer because the offer was already taken by another trader.
|
||||
takeOffer.failed.offerRemoved=You cannot take that offer because the offer has been removed in the meantime.
|
||||
|
@ -425,7 +426,7 @@ portfolio.pending.step1.openForDispute=The deposit transaction still did not get
|
|||
portfolio.pending.step2.confReached=Your trade has reached at least one blockchain confirmation.\n(You can wait for more confirmations if you want - 6 confirmations are considered as very secure.)\n\n
|
||||
|
||||
portfolio.pending.step2_buyer.copyPaste=(You can copy & paste the values from the main screen after closing that popup.)
|
||||
portfolio.pending.step2_buyer.refTextWarn=DO NOT use any additional notice in the \"reason for payment\" text like Bitcoin, Btc or Bitsquare.
|
||||
portfolio.pending.step2_buyer.refTextWarn=DO NOT use any additional notice in the \"reason for payment\" text like Bitcoin, BTC or bisq.
|
||||
portfolio.pending.step2_buyer.accountDetails=Here are the trading account details of the BTC seller:\n
|
||||
portfolio.pending.step2_buyer.tradeId=Please don't forget to add the trade ID \"
|
||||
portfolio.pending.step2_buyer.assign= as \"reason for payment\" so the receiver can assign your payment to this trade.\n\n
|
||||
|
@ -507,7 +508,7 @@ portfolio.pending.step5_buyer.refunded=Refunded security deposit:
|
|||
portfolio.pending.step5_buyer.withdrawBTC=Withdraw your bitcoins
|
||||
portfolio.pending.step5_buyer.amount=Amount to withdraw:
|
||||
portfolio.pending.step5_buyer.withdrawToAddress=Withdraw to address:
|
||||
portfolio.pending.step5_buyer.moveToBitsquareWallet=Move funds to Bitsquare wallet
|
||||
portfolio.pending.step5_buyer.moveToBitsquareWallet=Move funds to bisq wallet
|
||||
portfolio.pending.step5_buyer.withdrawExternal=Withdraw to external wallet
|
||||
portfolio.pending.step5_buyer.alreadyWithdrawn=Your funds have already been withdrawn.\nPlease check the transaction history.
|
||||
portfolio.pending.step5_buyer.confirmWithdrawal=Confirm withdrawal request
|
||||
|
@ -561,7 +562,7 @@ funds.tab.transactions=Transactions
|
|||
|
||||
funds.deposit.unused=Unused
|
||||
funds.deposit.usedInTx=Used in {0} transactions
|
||||
funds.deposit.fundBitsquareWallet=Fund Bitsquare wallet
|
||||
funds.deposit.fundBitsquareWallet=Fund bisq wallet
|
||||
funds.deposit.noAddresses=No deposit addresses have been generated yet
|
||||
funds.deposit.fundWallet=Fund your wallet
|
||||
funds.deposit.amount=Amount in BTC (optional):
|
||||
|
@ -603,7 +604,7 @@ funds.tx.receivedFunds=Received funds
|
|||
funds.tx.withdrawnFromWallet=Withdrawn from wallet
|
||||
funds.tx.noTxAvailable=No transactions available
|
||||
funds.tx.revert=Revert
|
||||
funds.tx.txSent=Transaction successfully sent to a new address in the local Bitsquare wallet.
|
||||
funds.tx.txSent=Transaction successfully sent to a new address in the local bisq wallet.
|
||||
|
||||
|
||||
####################################################################
|
||||
|
@ -617,7 +618,7 @@ support.filter=Filter list:
|
|||
support.noTickets=There are no open tickets
|
||||
support.sendingMessage=Sending Message...
|
||||
support.receiverNotOnline=Receiver is not online. Message is saved to his mailbox.
|
||||
support.wrongVersion=The offer in that dispute has been created with an older version of Bitsquare.\n\
|
||||
support.wrongVersion=The offer in that dispute has been created with an older version of bisq.\n\
|
||||
You cannot close that dispute with your version of the application.\n\n\
|
||||
Please use an older version with protocol version {0}
|
||||
support.openFile=Open file to attach (max. file size: {0} kb)
|
||||
|
@ -644,7 +645,7 @@ support.buyerOfferer=BTC buyer/Offerer
|
|||
support.sellerOfferer=BTC seller/Offerer
|
||||
support.buyerTaker=BTC buyer/Taker
|
||||
support.sellerTaker=BTC seller/Taker
|
||||
support.backgroundInfo=Bitsquare is not a company and not operating any kind of customer support.\n\n\
|
||||
support.backgroundInfo=bisq is not a company and not operating any kind of customer support.\n\n\
|
||||
If there are disputes in the trade process (e.g. one trader does not follow the trade protocol) \
|
||||
the application will display a \"Open dispute\" button after the trade period is over \
|
||||
for contacting the arbitrator.\n\
|
||||
|
@ -654,8 +655,8 @@ to the developers.\n\n\
|
|||
In cases where a user got stuck by a bug without getting displayed that \"Open support ticket\" button, \
|
||||
you can open a support ticket manually with a special short cut.\n\n\
|
||||
Please use that only if you are sure that the software is not working like expected. \
|
||||
If you have problems how to use Bitsquare or any questions please review the FAQ at the \
|
||||
Bitsquare.io web page or post in the Bitsquare forum at the support section.\n\n\
|
||||
If you have problems how to use bisq or any questions please review the FAQ at the \
|
||||
bisq.io web page or post in the bisq forum at the support section.\n\n\
|
||||
If you are sure that you want to open a support ticket please select the trade which causes the problem \
|
||||
under \"Portfolio/Open trades\" and type the key combination \"cmd + o\" or \"crtl + o\" to open \
|
||||
the support ticket.
|
||||
|
@ -722,16 +723,16 @@ settings.net.inbound=inbound
|
|||
settings.net.outbound=outbound
|
||||
|
||||
setting.about.aboutBisq=About bisq
|
||||
setting.about.about=Bitsquare is an open source project and a decentralized network of users who want to exchange Bitcoin with national currencies or alternative crypto currencies in a privacy protecting way. Learn more about Bitsquare on our project web page.
|
||||
setting.about.web=Bitsquare web page
|
||||
setting.about.about=bisq is an open source project and a decentralized network of users who want to exchange Bitcoin with national currencies or alternative crypto currencies in a privacy protecting way. Learn more about bisq on our project web page.
|
||||
setting.about.web=bisq web page
|
||||
setting.about.code=Source code
|
||||
setting.about.agpl=AGPL License
|
||||
setting.about.support=Support Bitsquare
|
||||
setting.about.def=Bitsquare is not a company but a community project and open for participation. If you want to participate or support Bitsquare please follow the links below.
|
||||
setting.about.support=Support bisq
|
||||
setting.about.def=bisq is not a company but a community project and open for participation. If you want to participate or support bisq please follow the links below.
|
||||
setting.about.contribute=Contribute
|
||||
setting.about.donate=Donate
|
||||
setting.about.providers=Data providers
|
||||
setting.about.apis=Bitsquare uses 3rd party APIs for Fiat and Altcoin market prices as well as for mining fee estimation.
|
||||
setting.about.apis=bisq uses 3rd party APIs for Fiat and Altcoin market prices as well as for mining fee estimation.
|
||||
setting.about.pricesProvided=Market prices provided by:
|
||||
setting.about.pricesProviders=BitcoinAverage (https://bitcoinaverage.com), Poloniex (https://poloniex.com) and Coinmarketcap (https://coinmarketcap.com)
|
||||
setting.about.feeEstimation.label=Mining fee estimation provided by:
|
||||
|
@ -748,12 +749,12 @@ setting.about.subsystems.val=Network version: {0}; P2P message version: {1}; Loc
|
|||
|
||||
account.tab.arbitratorRegistration=Arbitrator registration
|
||||
account.tab.account=Account
|
||||
account.info.headline=Welcome to your Bitsquare Account
|
||||
account.info.headline=Welcome to your bisq Account
|
||||
account.info.msg=Here you can setup trading accounts for national currencies & altcoins, select arbitrators and backup your wallet & account data.\n\n\
|
||||
An empty Bitcoin wallet was created the first time you started Bitsquare.\n\
|
||||
An empty Bitcoin wallet was created the first time you started bisq.\n\
|
||||
For Bitcoin trading, you are not required to set up any additional accounts. We recommend that you write down your Bitcoin wallet seed words (see button on the left) and consider adding a password before funding. Bitcoin deposits and withdrawals are managed in the \"Funds\" section.\n\n\
|
||||
Privacy & Security:\n\
|
||||
Bitsquare is a decentralized exchange – meaning all of your data is kept on your computer, there are no servers and we have no access to your personal info, your funds or even your IP address. Data such as bank account numbers, altcoin & Bitcoin addresses, etc are only shared with your trading partner to fulfill trades you initiate (in case of a dispute the arbitrator will see the same data like your trading peer).
|
||||
bisq is a decentralized exchange – meaning all of your data is kept on your computer, there are no servers and we have no access to your personal info, your funds or even your IP address. Data such as bank account numbers, altcoin & Bitcoin addresses, etc are only shared with your trading partner to fulfill trades you initiate (in case of a dispute the arbitrator will see the same data like your trading peer).
|
||||
|
||||
account.menu.paymentAccount=National currency accounts
|
||||
account.menu.altCoinsAccountView=Altcoin accounts
|
||||
|
@ -790,7 +791,7 @@ described on the {1} web page.\nUsing wallets from centralized exchanges where y
|
|||
your control or using a not compatible wallet software can lead to loss of the traded funds!\nThe arbitrator is \
|
||||
not a {2} specialist and cannot help in such cases.
|
||||
account.altcoin.popup.wallet.confirm=I understand and confirm that I know which wallet I need to use.
|
||||
account.altcoin.popup.xmr.msg=If you want to trade XMR on Bitsquare please be sure you understand and fulfill \
|
||||
account.altcoin.popup.xmr.msg=If you want to trade XMR on bisq please be sure you understand and fulfill \
|
||||
the following requirements:\n\n\
|
||||
For sending XMR you need to use either the official Monero GUI wallet or the Monero simple wallet with the \
|
||||
store-tx-info flag enabled (default in new versions).\n\
|
||||
|
@ -896,7 +897,7 @@ dao.wallet.menuItem.send=Send
|
|||
dao.wallet.menuItem.receive=Receive
|
||||
dao.wallet.menuItem.transactions=Transactions
|
||||
|
||||
dao.wallet.receive.fundBSQWallet=Fund Bitsquare BSQ wallet
|
||||
dao.wallet.receive.fundBSQWallet=Fund bisq BSQ wallet
|
||||
dao.wallet.receive.fundYourWallet=Fund your BSQ wallet
|
||||
dao.wallet.receive.amountOptional=Amount (optional)
|
||||
|
||||
|
@ -1009,7 +1010,7 @@ offerDetailsWindow.creationDate=Creation date:
|
|||
offerDetailsWindow.makersOnion=Offerer's onion address:
|
||||
|
||||
qRCodeWindow.headline=QR-Code
|
||||
qRCodeWindow.msg=Please use that QR-Code for funding your Bitsquare wallet from your external wallet.
|
||||
qRCodeWindow.msg=Please use that QR-Code for funding your bisq wallet from your external wallet.
|
||||
qRCodeWindow.request="Payment request:\n{0}
|
||||
|
||||
selectDepositTxWindow.headline=Select deposit transaction for dispute
|
||||
|
@ -1085,15 +1086,15 @@ popup.error.tryRestart=Please try to restart you application and check your netw
|
|||
popup.error.createTx=Error at creating transaction: {0}
|
||||
|
||||
popup.warning.walletNotInitialized=The wallet is not initialized yet
|
||||
popup.warning.wrongVersion=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ({2}).
|
||||
popup.warning.incompatibleDB=We detected incompatible data base files!\n\nThose database file(s) are not compatible with our current code base:\n{0}\n\nWe made a backup of the corrupted file(s) and applied the default values to a newdatabase version.\n\nThe backup is located at:\n{1}/db/backup_of_corrupted_data.\n\nPlease check if you have the latest version of Bitsquare installed.\nYou can download it at:\nhttps://bitsquare.io/downloads\n\nPlease restart the application.
|
||||
popup.warning.wrongVersion=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ({2}).
|
||||
popup.warning.incompatibleDB=We detected incompatible data base files!\n\nThose database file(s) are not compatible with our current code base:\n{0}\n\nWe made a backup of the corrupted file(s) and applied the default values to a newdatabase version.\n\nThe backup is located at:\n{1}/db/backup_of_corrupted_data.\n\nPlease check if you have the latest version of bisq installed.\nYou can download it at:\nhttps://bisq.io/downloads\n\nPlease restart the application.
|
||||
popup.warning.cannotConnectAtStartup=You still did not get connected to the {0} network.\nIf you use Tor for Bitcoin it might be that you got an unstable Tor circuit.\nYou can wait longer or try to restart.
|
||||
popup.warning.unknownProblemAtStartup=There is an unknown problem at startup.\nPlease restart and if the problem continues file a bug report.
|
||||
popup.warning.startupFailed.timeout=The application could not startup after 4 minutes.\n\n{0}
|
||||
popup.warning.startupFailed.twoInstances=Bitsquare is already running. You cannot run two instances of Bitsquare.
|
||||
popup.warning.cryptoTestFailed=Seems that you use a self compiled binary and have not following the build instructions in https://github.com/bitsquare/bitsquare/blob/master/doc/build.md#7-enable-unlimited-strength-for-cryptographic-keys.\n\nIf that is not the case and you use the official Bitsquare binary, please file a bug report to the Github page.\nError={0}
|
||||
popup.warning.startupFailed.twoInstances=bisq is already running. You cannot run two instances of bisq.
|
||||
popup.warning.cryptoTestFailed=Seems that you use a self compiled binary and have not following the build instructions in https://github.com/bisq/bisq/blob/master/doc/build.md#7-enable-unlimited-strength-for-cryptographic-keys.\n\nIf that is not the case and you use the official bisq binary, please file a bug report to the Github page.\nError={0}
|
||||
popup.warning.noBountyCastle=There is a problem with the crypto libraries. BountyCastle is not available.
|
||||
popup.warning.oldOffers.msg=You have open offers which have been created with an older version of Bitsquare.\nPlease remove those offers as they are not valid anymore.\n\nOffers (ID): {0}
|
||||
popup.warning.oldOffers.msg=You have open offers which have been created with an older version of bisq.\nPlease remove those offers as they are not valid anymore.\n\nOffers (ID): {0}
|
||||
popup.warning.oldOffers.buttonText=Remove outdated offer(s)
|
||||
popup.warning.tradePeriod.halfReached=Your trade with ID {0} has reached the half of the max. allowed trading period and is still not completed.\n\nThe trade period ends on {1}\n\nPlease check your trade state at \"Portfolio/Open trades\" for further information.
|
||||
popup.warning.tradePeriod.ended=Your trade with ID {0} has reached the max. allowed trading period and is not completed.\n\nThe trade period ended on {1}\n\nPlease check your trade at \"Portfolio/Open trades\" for contacting the arbitrator.
|
||||
|
@ -1138,7 +1139,7 @@ notification.walletUpdate.headline=Trading wallet update
|
|||
notification.walletUpdate.msg=Your trading wallet is sufficiently funded.\nAmount: {0}
|
||||
notification.takeOffer.walletUpdate.msg=Your trading wallet was already sufficiently funded from an earlier take offer attempt.\nAmount: {0}
|
||||
notification.tradeCompleted.headline=Trade completed
|
||||
notification.tradeCompleted.msg=You can withdraw your funds now to your external Bitcoin wallet or transfer it to the Bitsquare wallet.
|
||||
notification.tradeCompleted.msg=You can withdraw your funds now to your external Bitcoin wallet or transfer it to the bisq wallet.
|
||||
|
||||
|
||||
####################################################################
|
||||
|
@ -1387,20 +1388,30 @@ payment.personalId=Personal ID:
|
|||
|
||||
# We use constants from the code so we don't use our normal naming convention
|
||||
# dynamic values are not recognized by IntelliJ
|
||||
|
||||
# Only translate general terms
|
||||
NATIONAL_BANK=National bank transfer
|
||||
SAME_BANK=Transfer with same bank
|
||||
SPECIFIC_BANKS=Transfers with specific banks
|
||||
US_POSTAL_MONEY_ORDER=US Postal Money Order
|
||||
CASH_DEPOSIT=Cash Deposit
|
||||
|
||||
NATIONAL_BANK_SHORT=National banks
|
||||
SAME_BANK_SHORT=Same bank
|
||||
SPECIFIC_BANKS_SHORT=Specific banks
|
||||
US_POSTAL_MONEY_ORDER_SHORT=US Money Order
|
||||
CASH_DEPOSIT_SHORT=Cash Deposit
|
||||
|
||||
# Do not translate brand names
|
||||
OK_PAY=OKPay
|
||||
PERFECT_MONEY=Perfect Money
|
||||
ALI_PAY=AliPay
|
||||
SEPA=SEPA
|
||||
FASTER_PAYMENTS=Faster Payments
|
||||
NATIONAL_BANK=National bank transfer
|
||||
SAME_BANK=Transfer with same bank
|
||||
SPECIFIC_BANKS=Transfers with specific banks
|
||||
SWISH=Swish
|
||||
CLEAR_X_CHANGE=ClearXchange
|
||||
CHASE_QUICK_PAY=Chase QuickPay
|
||||
INTERAC_E_TRANSFER=Interac e-Transfer
|
||||
US_POSTAL_MONEY_ORDER=US Postal Money Order
|
||||
CASH_DEPOSIT=Cash Deposit
|
||||
BLOCK_CHAINS=Altcoins
|
||||
|
||||
OK_PAY_SHORT=OKPay
|
||||
|
@ -1408,15 +1419,10 @@ PERFECT_MONEY_SHORT=Perfect Money
|
|||
ALI_PAY_SHORT=AliPay
|
||||
SEPA_SHORT=SEPA
|
||||
FASTER_PAYMENTS_SHORT=Faster Payments
|
||||
NATIONAL_BANK_SHORT=National banks
|
||||
SAME_BANK_SHORT=Same bank
|
||||
SPECIFIC_BANKS_SHORT=Specific banks
|
||||
SWISH_SHORT=Swish
|
||||
CLEAR_X_CHANGE_SHORT=ClearXchange
|
||||
CHASE_QUICK_PAY_SHORT=Chase QuickPay
|
||||
INTERAC_E_TRANSFER_SHORT=Interac e-Transfer
|
||||
US_POSTAL_MONEY_ORDER_SHORT=US Money Order
|
||||
CASH_DEPOSIT_SHORT=Cash Deposit
|
||||
BLOCK_CHAINS_SHORT=Altcoins
|
||||
|
||||
|
||||
|
@ -1465,6 +1471,3 @@ validation.iban.checkSumInvalid=IBAN checksum is invalid
|
|||
validation.iban.invalidLength=Number must have length 15 to 34 chars.
|
||||
validation.interacETransfer.invalidAreaCode=Non-Canadian area code
|
||||
validation.interacETransfer.invalidPhone=Invalid phone number format and not an email address
|
||||
|
||||
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -1,239 +0,0 @@
|
|||
# Used by gui/components/infoDisplay.java
|
||||
|
||||
# shared
|
||||
shared.readMore=Weiterlesen
|
||||
shared.openHelp=Hilfe
|
||||
shared.warning=Warnung
|
||||
shared.error=Fehler
|
||||
shared.close=Schließen
|
||||
shared.cancel=Stornieren
|
||||
shared.ok=OK
|
||||
shared.yes=Ja
|
||||
shared.no=Nein
|
||||
|
||||
shared.openSettings=Öffnen Sie die Einstellungen für die Bearbeitung
|
||||
shared.buyBitcoin=Bitcoin kaufen
|
||||
shared.sellBitcoin=Bitcoin verkaufen
|
||||
shared.buy=kaufen
|
||||
shared.sell=verkaufen
|
||||
shared.spend=ausgeben
|
||||
|
||||
# App
|
||||
|
||||
app.version=Sie haben vermutlich die falsche Version von Bitsquare für diesen Rechner.\nie Architektur Ihres Rechners ist: {0}.\nDie installierten Bitsquare-Binärdateien sind: {1}.\nBitte beenden Sie und installieren Sie die korrekte Version ( {3} ).
|
||||
app.shutdown.headline=Im Herunterfahren begriffen ...
|
||||
app.shutdown.text=Das Herunterfahren der Anwendung kann einige Sekunden dauern.\nBitte unterbrechen Sie diesen Vorgang nicht.
|
||||
|
||||
# Payment methods
|
||||
|
||||
payment.account.no=Kontonummer:
|
||||
shared.currency=Währung:
|
||||
payment.account.name=Kontoname:
|
||||
# TODO remove payment.payment.method=Zahlungsmethode:
|
||||
payment.account.owner=Kontoinhaber:
|
||||
payment.bank.country=Land der Bank:
|
||||
payment.account.name.email=Kontoinhaber Name / E-Mail
|
||||
payment.bank.name=Name der Bank:
|
||||
payment.select.account=Konto-Typ wählen
|
||||
list.currency.select=Währung wählen
|
||||
payment.select.region=Region wählen
|
||||
payment.select.country=Land wählen
|
||||
payment.select.bank.country=Land der Bank wählen
|
||||
payment.foreign.currency=Sind Sie sicher, eine Währung zu wählen, die nicht die Standardwährung des Landes ist?
|
||||
payment.restore.default=Nein, Standardwährung wiederherstellen
|
||||
payment.email=E-Mail:
|
||||
payment.country=Land:
|
||||
payment.owner.email=Account holder email:
|
||||
payment.extras=Besondere Erfordernisse:
|
||||
payment.us.info=Überweisung mit WIRE oder ACH wird nicht unterstützt in den USA, weil WIRE zu teuer ist und ACH ein hohes Zurückbuchungs-Risikio hat.\n\nBitte nutzen Sie stattdessen die Zahlungsmethoden \"ClearXchange\", \"US Postal Money Order\" oder \"Cash Deposit\".
|
||||
payment.email.mobile=E-Mail-Adresse oder Mobil-Tel.-Nr.:
|
||||
payment.altcoin.address=Altcoin-Adresse:
|
||||
payment.address=Adresse:
|
||||
payment.altcoin=Altcoin:
|
||||
payment.select.altcoin=Altcoin wählen
|
||||
# remove payment.uk.sort=UK-Sortierschlüssel:
|
||||
payment.secret=Geheimfrage:
|
||||
payment.answer=Antwort:
|
||||
payment.wallet=Brieftaschen-ID:
|
||||
payment.supported.okpay=Unterstützte OKPay-Währungen:
|
||||
payment.max.allowed=Max. erlaubte Periode / Datum:
|
||||
time.hours=Stunden
|
||||
time.days=Tage
|
||||
time.1hour=1 Stunde
|
||||
time.1day=1 Tag
|
||||
# remove payment.max.duration=Max. Handels-Dauer:
|
||||
# remove payment.max.limit=Max. Handels-Limit:
|
||||
payment.limitations=Limitierungen:
|
||||
# remove payment.iban=IBAN:
|
||||
# remove payment.bic=BIC:
|
||||
payment.accept.euro=Akzeptiere Handel von diesen europäischen Ländern:
|
||||
payment.accept.nonEuro=Akzeptiere Handel von diesen nicht-europäischen Ländern:
|
||||
payment.all.euro=Alle Euro-Länder
|
||||
payment.accepted.countries=Akzeptierte Länder:
|
||||
payment.accepted.banks=Akzeptierte Banken:
|
||||
payment.mobile=Mobil-Tel.-Nr.:
|
||||
payment.postal.address=Post-Anschrift:
|
||||
|
||||
|
||||
|
||||
# validation
|
||||
validation.empty=Leere Eingabe ist nicht erlaubt.
|
||||
validation.NaN=Die Eingabe ist keine gültige Zahl.
|
||||
validation.zero=Die Eingabe von 0 ist nicht erlaubt.
|
||||
validation.negative=Ein negativer Wert ist nicht erlaubt.
|
||||
validation.fiat.toSmall=Die Eingabe eines kleineren Betrags als der minimal mögliche Betrag ist nicht erlaubt.
|
||||
validation.fiat.toLarge=Die Eingabe eines größeren Betrags als der maximal mögliche Betrag ist nicht erlaubt.
|
||||
validation.btc.toSmall=Die Eingabe ergibt einen Bitcoinwert mit einem Bruchteil der kleinsten Einheit (Satoshi).
|
||||
validation.btc.toLarge=Die Eingabe eines größeren Betrags als der maximale Handelsbetrag von {0} ist nicht erlaubt.
|
||||
validation.passwordTooShort=Das eingegebene Passwort ist zu kurz. Es muss min. 8 Zeichen haben.
|
||||
validation.passwordTooLong=Das eingegebene Passwort ist zu lang. Es darf nicht länger als 50 Zeichen sein.
|
||||
validation.sortCodeNumber={0} muss aus {1} Zahlen bestehen
|
||||
validation.sortCodeChars={0} muss aus {1} Zeichen bestehen
|
||||
validation.bankIdNumber={0} muss aus {1} Zahlen bestehen
|
||||
validation.accountNr=Kontonummer muss aus {0} Zahlen bestehen
|
||||
validation.accountNrChars=Kontonummer muss aus {0} Zeichen bestehen
|
||||
|
||||
# Create offer
|
||||
createOffer.amount.prompt=Betrag in BTC eingeben
|
||||
createOffer.price.prompt=Preis eingeben
|
||||
createOffer.volume.prompt=Betrag in {0} eingeben
|
||||
# TODO remove createOffer.minAmount.prompt=Min. Betrag eingeben
|
||||
|
||||
# TODO remove createOffer.amountPriceBox.title=Erstellen Sie Ihr Angebot
|
||||
createOffer.amountPriceBox.amountDescription=Menge an Bitcoin zu {0}
|
||||
createOffer.amountPriceBox.priceDescriptionFiat=Festpreis pro {0}
|
||||
createOffer.amountPriceBox.buy.volumeDescription=Auszugebender Betrag in {0}
|
||||
createOffer.amountPriceBox.sell.volumeDescription=Zu erhaltener Betrag in {0}
|
||||
# TODO remove createOffer.amountPriceBox.minAmountDescription=Mindestbetrag in Bitcoin
|
||||
# TODO remove createOffer.amountPriceBox.buy.info=Definieren Sie einen Preis, für den Sie Bitcoin kaufen möchten und geben Sie entweder den Betrag oder das Handelsvolumen ein. Mit dem minimalen Betrag können Sie mehr potenzielle Händler gewinnen, indem sie ihnen mehr Flexibilität gewähren. Aber beachten Sie, dass es keine automatische Erstellung eines neuen Angebots für den Restbetrag gibt, in dem Fall, dass ein Händler Ihr Angebot mit einem niedrigeren Betrag, wie im Betragsfeld definiert, annimmt. Ihr Angebot wird aus der Angebotsliste entfernt, sobald ein Händler Ihr Angebot angenommen hat.
|
||||
# TODO remove createOffer.amountPriceBox.sell.info=Definieren Sie einen Preis, für den Sie Bitcoin verkaufen möchten und geben Sie entweder den Betrag oder das Handelsvolumen ein. Mit dem minimalen Betrag können Sie mehr potenzielle Händler gewinnen, indem sie ihnen mehr Flexibilität gewähren. Aber beachten Sie, dass es keine automatische Erstellung eines neuen Angebots für den Restbetrag gibt, in dem Fall, dass ein Händler Ihr Angebot mit einem niedrigeren Betrag, wie im Betragsfeld definiert, annimmt. Ihr Angebot wird aus der Angebotsliste entfernt, sobald ein Händler Ihr Angebot angenommen hat.
|
||||
# TODO remove createOffer.amountPriceBox.next=Nächster Schritt
|
||||
# TODO remove createOffer.amountPriceBox.warning.invalidBtcDecimalPlaces=Der eingegebene Betrag überschreitet die Anzahl der erlaubten Dezimalstellen.\nDer Betrag wurde auf 4 Dezimalstellen reduziert.
|
||||
# TODO remove createOffer.amountPriceBox.warning.invalidFiatDecimalPlaces=Der eingegebene Betrag überschreitet die Anzahl der erlaubten Dezimalstellen.\nDer Betrag wurde angepasst.
|
||||
# TODO remove createOffer.amountPriceBox.warning.adjustedVolume=Das eingegebene Gesamtvolumen führt zu ungültigen fraktionalen Bitcoinbeträgen. Der Betrag wurde angepasst und daraus ein neues Gesamtvolumen berechnet.
|
||||
createOffer.amountPriceBox.error.message=Bei der Angebotsabgabe ist ein Fehler aufgetreten:\n\n{0}
|
||||
# TODO remove createOffer.validation.amountSmallerThanMinAmount=Der Betrag darf nicht kleiner als der Mindestbetrag sein.
|
||||
# TODO remove createOffer.validation.minAmountLargerThanAmount=Der Mindestbetrag darf nicht größer sein als der Betrag.
|
||||
|
||||
createOffer.fundsBox.title=Finanzieren Sie Ihr Angebot
|
||||
createOffer.fundsBox.totalsNeeded=Benötigte Mittel:
|
||||
createOffer.fundsBox.totalsNeeded.prompt=Wird aus der oben eingegebenen Bitcoin-Menge berechnet
|
||||
createOffer.fundsBox.address=Trade Wallet Adresse:
|
||||
createOffer.fundsBox.balance=Trade Wallet Kontostand:
|
||||
# TODO remove createOffer.fundsBox.info=Für jedes Angebot gibt es eine eigene Trade Wallet. Sie müssen diese Trade Wallet mit der erforderlichen Bitcoin-Menge finanzieren. Diese Mittel sind reserviert und werden verwendet, wenn Ihr Angebot angenommen wird. Wenn Sie Ihr Angebot stornieren, können Sie Ihr Geld von dieser Trading Wallet abheben. Die einzige Zahlung, die bei der Abgabe eines Angebots erfolgt, ist die Zahlung der Angebotsgebühr. https://bitsquare.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Handelsmenge:
|
||||
createOffer.fundsBox.securityDeposit=Kaution:
|
||||
createOffer.fundsBox.offerFee=Angebot erstellen Gebühr:
|
||||
createOffer.fundsBox.networkFee=Mining Gebühr:
|
||||
createOffer.fundsBox.total=Gesamt:
|
||||
# TODO remove createOffer.fundsBox.showAdvanced=Erweiterte Einstellungen anzeigen
|
||||
# TODO remove createOffer.fundsBox.hideAdvanced=Erweiterte Einstellungen ausblenden
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Angebot platzieren
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Angebot wird veröffentlicht...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare Trade mit ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Erweiterte Einstellungen
|
||||
# TODO # TODO remove createOffer.advancedBox.countries=Akzeptierte Länder:
|
||||
# TODO remove # TODO remove createOffer.advancedBox.languages=Akzeptierte Sprachen:
|
||||
# TODO remove createOffer.advancedBox.arbitrators=Akzeptierte Schiedsrichter:
|
||||
# TODO remove createOffer.advancedBox.txType=Zahlungsmethode:
|
||||
shared.currency=Währung:
|
||||
# TODO remove createOffer.advancedBox.county=Land des Zahlungskontos:
|
||||
# TODO remove createOffer.advancedBox.info=Ihre Handelspartner müssen Ihre Angebotsbeschränkungen erfüllen. Sie können die akzeptierten Länder, Sprachen und Schiedsrichter in den Einstellungen bearbeiten. Die Zahlungskonto-Details werden von Ihrem aktuellen ausgewählten Zahlungskonto (wenn Sie mehrere Zahlungskonten haben) verwendet.
|
||||
|
||||
createOffer.success.headline=Ihr Angebot wurde veröffentlicht
|
||||
createOffer.success.info=Sie können Ihre offenen Angebote im \"Portfolio\" Bildschirm unter \"Meine offenen Angebote"\ verwalten.
|
||||
# TODO remove createOffer.error.message=Bei der Angebotsabgabe ist ein Fehler aufgetreten.\n\n{0}
|
||||
|
||||
|
||||
# Take offer
|
||||
takeOffer.amount.prompt=Betrag in BTC eingeben
|
||||
# TODO remove takeOffer.price.prompt=Preis eingeben
|
||||
# TODO remove takeOffer.volume.prompt=Betrag in {0} eingeben
|
||||
# TODO remove takeOffer.minAmount.prompt=Min. Betrag eingeben
|
||||
|
||||
# TODO remove takeOffer.amountPriceBox.title=Angebot annehmen
|
||||
# TODO remove takeOffer.amountPriceBox.subTitle=Bitcoin kaufen
|
||||
takeOffer.amountPriceBox.buy.amountDescription=Menge an Bitcoins (Verkauf)
|
||||
takeOffer.amountPriceBox.sell.amountDescription=Menge an Bitcoins (Kauf)
|
||||
takeOffer.amountPriceBox.priceDescription=Preis pro Bitcoin in {0}
|
||||
# TODO remove takeOffer.amountPriceBox.buy.volumeDescription=Zu erhaltener Betrag in {0}
|
||||
# TODO remove takeOffer.amountPriceBox.sell.volumeDescription=Auszugebender Betrag in {0}
|
||||
takeOffer.amountPriceBox.amountRangeDescription=Möglicher Betragsbereich
|
||||
# TODO remove takeOffer.amountPriceBox.buy.info=Geben Sie die Menge an Bitcoins ein, die Sie verkaufen möchten. Sie können einen Betrag zwischen dem Mindestbetrag und dem Betrag auswählen.
|
||||
# TODO remove takeOffer.amountPriceBox.sell.info=Geben Sie die Menge an Bitcoins ein, die Sie kaufen möchten. Sie können einen Betrag zwischen dem Mindestbetrag und dem Betrag auswählen.
|
||||
# TODO remove takeOffer.amountPriceBox.next=Nächster Schritt
|
||||
takeOffer.amountPriceBox.warning.invalidBtcDecimalPlaces=Der eingegebene Betrag überschreitet die Anzahl der erlaubten Dezimalstellen.\nDer Betrag wurde auf 4 Dezimalstellen reduziert.
|
||||
takeOffer.validation.amountSmallerThanMinAmount=Der Betrag darf nicht kleiner sein als der im Angebot definierte Mindestbetrag.
|
||||
takeOffer.validation.amountLargerThanOfferAmount=Der eingegebene Betrag darf nicht höher sein als der im Angebot definierte Betrag.
|
||||
takeOffer.validation.amountLargerThanOfferAmountMinusFee=Dieser Eingabebetrag würde eine Menge an Bitcoin erzeugen, die unterhalb der Grenzen für eine legitime Transaktion für den BTC-Verkäufer liegt.
|
||||
|
||||
takeOffer.fundsBox.title=Finanzieren Sie Ihren Trade
|
||||
takeOffer.fundsBox.isOfferAvailable=Es wird überprüft, ob das Angebot verfügbar ist...
|
||||
takeOffer.fundsBox.totalsNeeded=Benötigte Mittel:
|
||||
# TODO remove takeOffer.fundsBox.totalsNeeded.prompt=Wird aus der oben eingegebenen Bitcoin-Menge berechnet
|
||||
takeOffer.fundsBox.address=Trade Wallet Adresse:
|
||||
takeOffer.fundsBox.balance=Trade Wallet Kontostand:
|
||||
# TODO remove takeOffer.fundsBox.buy.info=Für jedes Angebot gibt es eine eigene Trade Wallet. Sie müssen diese Trade Wallet mit der erforderlichen Bitcoin-Menge finanzieren. \
|
||||
Diese Mittel werden in eine gesperrte Einzahlungsadresse eingezahlt. Am Ende eines erfolgreichen Trades erhalten Sie Ihre Kaution zurück und die von Ihnen verkaufte \
|
||||
Bitcoin-Menge wird an den BTC-Käufer übertragen.
|
||||
# TODO remove takeOffer.fundsBox.sell.info=Für jedes Angebot gibt es eine eigene Trade Wallet. Sie müssen diese Trade Wallet mit der erforderlichen Bitcoin-Menge finanzieren. \
|
||||
Diese Mittel werden in eine gesperrte Einzahlungsadresse eingezahlt. Am Ende eines erfolgreichen Trades erhalten Sie Ihre Kaution zurück.
|
||||
takeOffer.fundsBox.tradeAmount=Verkaufsbetrag:
|
||||
takeOffer.fundsBox.securityDeposit=Kaution:
|
||||
takeOffer.fundsBox.offerFee=Angebot annehmen Gebühr:
|
||||
takeOffer.fundsBox.networkFee=Mining Gebühr:
|
||||
takeOffer.fundsBox.total=Gesamt:
|
||||
# TODO remove takeOffer.fundsBox.showAdvanced=Erweiterte Einstellungen anzeigen
|
||||
# TODO remove takeOffer.fundsBox.hideAdvanced=Erweiterte Einstellungen ausblenden
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Angebot annehmen
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Angebot wird angenommen...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare Trade mit ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Erweiterte Einstellungen
|
||||
# TODO remove takeOffer.advancedBox.countries=Akzeptierte Länder:
|
||||
# TODO remove takeOffer.advancedBox.languages=Akzeptierte Sprachen:
|
||||
# TODO remove takeOffer.advancedBox.arbitrators=Akzeptierte Schiedsrichter:
|
||||
# TODO remove takeOffer.advancedBox.txType=Zahlungsmethode:
|
||||
shared.currency=Währung:
|
||||
# TODO remove takeOffer.advancedBox.county=Land des Zahlungskontos:
|
||||
# TODO remove takeOffer.advancedBox.info=Dies sind die Angebotsbeschränkungen, die Ihr Handelspartner in seinem Angebot definiert hat. \
|
||||
Ihre Einstellungen entsprechen den Einschränkungen und Sie können mit ihm handeln.
|
||||
|
||||
takeOffer.success.headline=Sie haben ein Angebot erfolgreich angenommen
|
||||
takeOffer.success.info=Sie können den Status Ihres Handels auf dem \"Portfolio\" Bildschirm unter \"Offene Trades\" sehen.
|
||||
takeOffer.error.message=Beim Annehmen des Angebots ist ein Fehler aufgetreten.\n\n{0}
|
||||
|
||||
# Payment methods
|
||||
# remove N/A=n. a.
|
||||
OK_PAY=OKPay
|
||||
PERFECT_MONEY=Perfect Money
|
||||
ALI_PAY=AliPay
|
||||
SEPA=SEPA
|
||||
FASTER_PAYMENTS=Faster Payments
|
||||
NATIONAL_BANK=Inlandsüberweisung
|
||||
SAME_BANK=Überweisung mit derselben Bank
|
||||
SPECIFIC_BANKS=Überweisung mit bestimmten Banken
|
||||
SWISH=Swish
|
||||
CLEAR_X_CHANGE=ClearXchange
|
||||
US_POSTAL_MONEY_ORDER=US-Postanweisung
|
||||
CASH_DEPOSIT=Bareinzahlung
|
||||
|
||||
BLOCK_CHAINS=Altcoins
|
||||
|
||||
# remove N/A_SHORT=n. a.
|
||||
OK_PAY_SHORT=OKPay
|
||||
PERFECT_MONEY_SHORT=Perfect Money
|
||||
ALI_PAY_SHORT=AliPay
|
||||
SEPA_SHORT=SEPA
|
||||
FASTER_PAYMENTS_SHORT=Faster Payments
|
||||
NATIONAL_BANK_SHORT=Inlandsüberweisung
|
||||
SAME_BANK_SHORT=Gleiche Bank
|
||||
SPECIFIC_BANKS_SHORT=Bestimmte Banken
|
||||
FED_WIRE_SHORT=Fedwire
|
||||
SWISH_SHORT=Swish
|
||||
CLEAR_X_CHANGE_SHORT=ClearXchange
|
||||
US_POSTAL_MONEY_ORDER_SHORT=US-Zahlungsanweisung
|
||||
CASH_DEPOSIT_SHORT=Bareinzahlung
|
||||
|
||||
BLOCK_CHAINS_SHORT=Altcoins
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=gastar
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -118,7 +118,7 @@ createOffer.fundsBox.totalsNeeded=Fondos necesitados:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Serán calculados desde la cantidad de bitcoin introducida arriba.
|
||||
createOffer.fundsBox.address=Dirección del monedero del trato:
|
||||
createOffer.fundsBox.balance=Balance del monedero del trato:
|
||||
# TODO remove createOffer.fundsBox.info=Por cada oferta hay un monedero dedicado. Tiene que introducir fondos al monedero del trato con la cantidad necesaria de bitcoins. Esos fondos son guardan y se usarán si su oferta se ejecuta. Si cancela su oferta puede extraer los fondos desde el monedero de comercio. El único pago cuando se pone una oferta es la tasa oferta. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=Por cada oferta hay un monedero dedicado. Tiene que introducir fondos al monedero del trato con la cantidad necesaria de bitcoins. Esos fondos son guardan y se usarán si su oferta se ejecuta. Si cancela su oferta puede extraer los fondos desde el monedero de comercio. El único pago cuando se pone una oferta es la tasa oferta. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Cantidad a comerciar:
|
||||
createOffer.fundsBox.securityDeposit=Depósito de seguridad:
|
||||
createOffer.fundsBox.offerFee=Crear tasa de oferta:
|
||||
|
@ -128,7 +128,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Ocultar configuraciones avanzadas
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Poner oferta
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Publicación de oferta en curso...
|
||||
createOffer.fundsBox.paymentLabel=Trato de Bitsquare con ID {0}
|
||||
createOffer.fundsBox.paymentLabel=Trato de bisq con ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Configuraciones avanzadas
|
||||
# TODO # TODO remove createOffer.advancedBox.countries=Países aceptados:
|
||||
|
@ -187,7 +187,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Ocultar configuraciones avanzadas
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Aceptar oferta
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Aceptación de oferta en espera...
|
||||
takeOffer.fundsBox.paymentLabel=Trato de Bitsquare con ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=Trato de bisq con ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Configuracones avanzadas:
|
||||
# TODO remove takeOffer.advancedBox.countries=Países aceptados:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=potroši
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -118,7 +118,7 @@ createOffer.fundsBox.totalsNeeded=Potrebna sredstva:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Biti će izračunata iz iznosa bitcoina koje ste unijeli iznad
|
||||
createOffer.fundsBox.address=Adresa novčanika za razmjenu:
|
||||
createOffer.fundsBox.balance=Stanje novčanika za razmjenu:
|
||||
# TODO remove createOffer.fundsBox.info=Svaka ponuda koristi zasebni novčanik za razmjenu. Morate napuniti taj novčanik potrebnim iznosom bitcoina. Ta su sredstva rezervirana te će se koristiti u slučaju da ponuda bude prihvaćena. U slučaju da otkažete svoju ponudu možete povući svoja sredstva iz tog novčanika. Jedina uplata koja će biti izvršena prilikom postavljanja ponude je sama naknada za postavljanje ponude. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=Svaka ponuda koristi zasebni novčanik za razmjenu. Morate napuniti taj novčanik potrebnim iznosom bitcoina. Ta su sredstva rezervirana te će se koristiti u slučaju da ponuda bude prihvaćena. U slučaju da otkažete svoju ponudu možete povući svoja sredstva iz tog novčanika. Jedina uplata koja će biti izvršena prilikom postavljanja ponude je sama naknada za postavljanje ponude. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Iznos razmjene:
|
||||
createOffer.fundsBox.securityDeposit=Sigurnosni depozit:
|
||||
createOffer.fundsBox.offerFee=Naknada za izradu ponude:
|
||||
|
@ -128,7 +128,7 @@ createOffer.fundsBox.total=Ukupno:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Sakrij napredne postavke
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Postavi ponudu
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Objava ponude je u toku...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare razmjena sa ID-om {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq razmjena sa ID-om {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Napredne postavke
|
||||
# TODO # TODO remove createOffer.advancedBox.countries=Prihvaćene zemlje:
|
||||
|
@ -187,7 +187,7 @@ takeOffer.fundsBox.total=Ukupno:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Sakrij napredne postavke
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Prihvati ponudu
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Prihvaćanje ponude u toku...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare razmjena sa ID-om {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq razmjena sa ID-om {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Napredne postavke
|
||||
# TODO remove takeOffer.advancedBox.countries=Prihvaćene zemlje:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spendi
|
|||
|
||||
# App
|
||||
|
||||
app.version=Hai probabilmente la versione sbagliata di Bitsquare su questo computer.\nL'architettura el tuo computer è: {0}.\nL'eseguibile di Bitsquare che hai installato è: {1}.\nSi prega di chiudere e reinstallare la versione corretta ( {3} ).
|
||||
app.version=Hai probabilmente la versione sbagliata di bisq su questo computer.\nL'architettura el tuo computer è: {0}.\nL'eseguibile di bisq che hai installato è: {1}.\nSi prega di chiudere e reinstallare la versione corretta ( {3} ).
|
||||
app.shutdown.headline=Spegnimento in corso ...
|
||||
app.shutdown.text=Lo spegnimento dell'applicazione può richiedere un po' di secondi.\nSi prega di non interrompere il processo.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Fondi richiesti:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Indirizzo portafoglio per lo scambio:
|
||||
createOffer.fundsBox.balance=Saldo portafoglio per lo scambio:
|
||||
# TODO remove createOffer.fundsBox.info=Per ogni offerta c'è un portamonete di scambio dedicato. Devi finanziare il portamonete di scambio con la quantità di bitcoin necessaria. Questi fondi sono riservati e saranno utilizzati nel caso in cui la tua offerta venga eseguita. Se cancelli la tua offerta puoi ritirare i fondi da quel portamonete di scambio. L'unico pagamento eseguito quando disponi un'offerta è la commissione di pagamento per offerta. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=Per ogni offerta c'è un portamonete di scambio dedicato. Devi finanziare il portamonete di scambio con la quantità di bitcoin necessaria. Questi fondi sono riservati e saranno utilizzati nel caso in cui la tua offerta venga eseguita. Se cancelli la tua offerta puoi ritirare i fondi da quel portamonete di scambio. L'unico pagamento eseguito quando disponi un'offerta è la commissione di pagamento per offerta. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Importo per lo scambio:
|
||||
createOffer.fundsBox.securityDeposit=Deposito di sicurezza:
|
||||
createOffer.fundsBox.offerFee=Crea commissione di offerta:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Totale:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Nascondi impostazioni avanzate
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Posiziona offerta
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Pubblicazione dell'offerta in corso ...
|
||||
createOffer.fundsBox.paymentLabel=Scambi Bitsquare con ID {0}
|
||||
createOffer.fundsBox.paymentLabel=Scambi bisq con ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Impostazioni avanzate
|
||||
# TODO # TODO remove createOffer.advancedBox.countries=Paesi accettati:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Totale:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Nascondi impostazioni avanzate
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Prendere offerta
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Raccolta dell'offerta in corso ...
|
||||
takeOffer.fundsBox.paymentLabel=Scambio Bitsquare con ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=Scambio bisq con ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Impostazioni avanzate
|
||||
# TODO remove takeOffer.advancedBox.countries=Paesi accettati:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -67,7 +67,7 @@ createOffer.fundsBox.totalsNeeded=Fundos necessários:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Será calculado pelos montantes de bitcoin introduzidos acima
|
||||
createOffer.fundsBox.address=Endereço da carteira da troca:
|
||||
createOffer.fundsBox.balance=Saldo da carteira da troca:
|
||||
# TODO remove createOffer.fundsBox.info=Para cada oferta há uma carteira de troca dedicada. Precisa de provisionar essa carteira da troca com o montante de bitcoin necessário. Esses fundos serão reservados e usados no caso de a oferta ser executada. Se cancelar a sua oferta pode levantar os seus fundos dessa carteira de troca. O único pagamento feito ao criar uma oferta é o pagamento da taxa da oferta. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=Para cada oferta há uma carteira de troca dedicada. Precisa de provisionar essa carteira da troca com o montante de bitcoin necessário. Esses fundos serão reservados e usados no caso de a oferta ser executada. Se cancelar a sua oferta pode levantar os seus fundos dessa carteira de troca. O único pagamento feito ao criar uma oferta é o pagamento da taxa da oferta. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Montante da troca:
|
||||
createOffer.fundsBox.securityDeposit=Depósito de segurança:
|
||||
createOffer.fundsBox.offerFee=Taxa de criação de oferta:
|
||||
|
@ -77,7 +77,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Esconder opções avançadas
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Criar oferta
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=A publicação da oferta está a decorrer...
|
||||
createOffer.fundsBox.paymentLabel=Troca Bitsquare com o ID {0}
|
||||
createOffer.fundsBox.paymentLabel=Troca bisq com o ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Opções avançadas
|
||||
# TODO # TODO remove createOffer.advancedBox.countries=Países aceites:
|
||||
|
@ -136,7 +136,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Esconder opções avançadas
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Aceitar a oferta
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Aceitação da oferta em progresso...
|
||||
takeOffer.fundsBox.paymentLabel=Troca Bitsquare com o ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=Troca bisq com o ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Opções avançadas
|
||||
# TODO remove takeOffer.advancedBox.countries=Países aceites:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
|
@ -20,7 +20,7 @@ shared.spend=spend
|
|||
|
||||
# App
|
||||
|
||||
app.version=You probably have the wrong Bitsquare version for this computer.\nYour computer's architecture is: {0}.\nThe Bitsquare binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.version=You probably have the wrong bisq version for this computer.\nYour computer's architecture is: {0}.\nThe bisq binary you installed is: {1}.\nPlease shut down and re-install the correct version ( {3} ).
|
||||
app.shutdown.headline=Shutdown in progress ...
|
||||
app.shutdown.text=Shutting down application can take a few seconds.\nPlease don't interrupt this process.
|
||||
|
||||
|
@ -120,7 +120,7 @@ createOffer.fundsBox.totalsNeeded=Funds needed:
|
|||
createOffer.fundsBox.totalsNeeded.prompt=Will be calculated from the bitcoin amount entered above
|
||||
createOffer.fundsBox.address=Trade wallet address:
|
||||
createOffer.fundsBox.balance=Trade wallet balance:
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bitsquare.io/faq/#6
|
||||
# TODO remove createOffer.fundsBox.info=For every offer there is a dedicated trade wallet. You need to fund that trade wallet with the necessary bitcoin amount. Those funds are reserved and will be used in the case that your offer gets executed. If you cancel your offer you can withdraw your funds from that trading wallet. The only payment made when placing an offer is the offer fee payment. https://bisq.io/faq/#6
|
||||
createOffer.fundsBox.tradeAmount=Trade amount:
|
||||
createOffer.fundsBox.securityDeposit=Security deposit:
|
||||
createOffer.fundsBox.offerFee=Create offer fee:
|
||||
|
@ -130,7 +130,7 @@ createOffer.fundsBox.total=Total:
|
|||
# TODO remove createOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove createOffer.fundsBox.placeOffer=Place offer
|
||||
createOffer.fundsBox.placeOfferSpinnerInfo=Offer publishing is in progress ...
|
||||
createOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
createOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove # TODO remove createOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove # TODO remove createOffer.advancedBox.countries=Accepted countries:
|
||||
|
@ -188,7 +188,7 @@ takeOffer.fundsBox.total=Total:
|
|||
# TODO remove takeOffer.fundsBox.hideAdvanced=Hide advanced settings
|
||||
# TODO remove takeOffer.fundsBox.takeOffer=Take offer
|
||||
takeOffer.fundsBox.takeOfferSpinnerInfo=Take offer in progress ...
|
||||
takeOffer.fundsBox.paymentLabel=Bitsquare trade with ID {0}
|
||||
takeOffer.fundsBox.paymentLabel=bisq trade with ID {0}
|
||||
|
||||
# TODO remove takeOffer.advancedBox.title=Advanced settings
|
||||
# TODO remove takeOffer.advancedBox.countries=Accepted countries:
|
||||
|
|
Loading…
Add table
Reference in a new issue