line 2") + translationManager.emptyString
diff --git a/MiddlePanel.qml b/MiddlePanel.qml
index 6c18a56e..2190c2a8 100644
--- a/MiddlePanel.qml
+++ b/MiddlePanel.qml
@@ -42,8 +42,9 @@ Rectangle {
property Item currentView
property Item previousView
property bool basicMode : false
- property string balanceLabelText: qsTr("Balance")
+ property string balanceLabelText: qsTr("Balance") + translationManager.emptyString
property string balanceText
+ property string unlockedBalanceLabelText: qsTr("Unlocked Balance") + translationManager.emptyString
property string unlockedBalanceText
property Transfer transferView: Transfer { }
@@ -239,6 +240,7 @@ Rectangle {
}
Text {
+ id: availableBalanceLabel
width: 116
height: 20
font.family: "Arial"
@@ -248,7 +250,7 @@ Rectangle {
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignBottom
color: "#535353"
- text: qsTr("Unlocked Balance:")
+ text: root.unlockedBalanceLabelText + ":"
}
Text {
diff --git a/pages/AddressBook.qml b/pages/AddressBook.qml
index 3dc2a407..88b0d701 100644
--- a/pages/AddressBook.qml
+++ b/pages/AddressBook.qml
@@ -57,7 +57,7 @@ Rectangle {
anchors.top: newEntryText.bottom
anchors.leftMargin: 17
anchors.topMargin: 17
- text: qsTr("Address")
+ text: qsTr("Address") + translationManager.emptyString
fontSize: 14
tipText: qsTr("Tip tekst test") + translationManager.emptyString
}
@@ -150,7 +150,7 @@ Rectangle {
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
- text: qsTr("Add")
+ text: qsTr("Add") + translationManager.emptyString
enabled: checkInformation(addressLine.text, paymentIdLine.text, appWindow.persistentSettings.testnet)
onClicked: {
@@ -158,11 +158,11 @@ Rectangle {
informationPopup.title = qsTr("Error") + translationManager.emptyString;
// TODO: check currentWallet.addressBook.errorString() instead.
if(currentWallet.addressBook.errorCode() === AddressBook.Invalid_Address)
- informationPopup.text = qsTr("Invalid address")
+ informationPopup.text = qsTr("Invalid address") + translationManager.emptyString
else if(currentWallet.addressBook.errorCode() === AddressBook.Invalid_Payment_Id)
informationPopup.text = currentWallet.addressBook.errorString()
else
- informationPopup.text = qsTr("Can't create entry")
+ informationPopup.text = qsTr("Can't create entry") + translationManager.emptyString
informationPopup.onCloseCallback = null
informationPopup.open();
diff --git a/pages/Receive.qml b/pages/Receive.qml
index 4a2f4fcd..889ee534 100644
--- a/pages/Receive.qml
+++ b/pages/Receive.qml
@@ -241,7 +241,7 @@ Rectangle {
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
- text: qsTr("Generate")
+ text: qsTr("Generate") + translationManager.emptyString;
anchors.right: parent.right
onClicked: {
appWindow.persistentSettings.payment_id = appWindow.currentWallet.generatePaymentId();
@@ -379,7 +379,7 @@ Rectangle {
id: qrMenu
title: "QrCode"
MenuItem {
- text: qsTr("Save As")
+ text: qsTr("Save As") + translationManager.emptyString;
onTriggered: qrFileDialog.open()
}
}
diff --git a/pages/Settings.qml b/pages/Settings.qml
index 09483785..10ccb64a 100644
--- a/pages/Settings.qml
+++ b/pages/Settings.qml
@@ -117,7 +117,7 @@ Rectangle {
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
- text: qsTr("Show seed")
+ text: qsTr("Show seed") + translationManager.emptyString
Layout.alignment: Qt.AlignRight
onClicked: {
settingsPasswordDialog.open();
@@ -225,7 +225,7 @@ Rectangle {
Layout.preferredWidth: 200
Layout.fillWidth: true
text: (daemonAddress !== undefined) ? daemonAddress[0] : ""
- placeholderText: qsTr("Hostname / IP")
+ placeholderText: qsTr("Hostname / IP") + translationManager.emptyString
}
@@ -234,7 +234,7 @@ Rectangle {
Layout.preferredWidth: 100
Layout.fillWidth: true
text: (daemonAddress !== undefined) ? daemonAddress[1] : "18081"
- placeholderText: qsTr("Port")
+ placeholderText: qsTr("Port") + translationManager.emptyString
}
}
@@ -253,7 +253,7 @@ Rectangle {
Layout.preferredWidth: 100
Layout.fillWidth: true
text: persistentSettings.daemonUsername
- placeholderText: qsTr("Username")
+ placeholderText: qsTr("Username") + translationManager.emptyString
}
@@ -262,7 +262,7 @@ Rectangle {
Layout.preferredWidth: 100
Layout.fillWidth: true
text: persistentSettings.daemonPassword
- placeholderText: qsTr("Password")
+ placeholderText: qsTr("Password") + translationManager.emptyString
echoMode: TextInput.Password
}
@@ -400,7 +400,7 @@ Rectangle {
id: daemonConsolePopup
height:500
width:800
- title: qsTr("Daemon log")
+ title: qsTr("Daemon log") + translationManager.emptyString
onAccepted: {
close();
}
diff --git a/pages/Sign.qml b/pages/Sign.qml
index a5ace1a4..5edf0767 100644
--- a/pages/Sign.qml
+++ b/pages/Sign.qml
@@ -192,7 +192,7 @@ Rectangle {
FileDialog {
id: signFileDialog
- title: "Please choose a file to sign"
+ title: qsTr("Please choose a file to sign") + translationManager.emptyString;
folder: "file://"
nameFilters: [ "*"]
@@ -377,7 +377,7 @@ Rectangle {
FileDialog {
id: verifyFileDialog
- title: "Please choose a file to verify"
+ title: qsTr("Please choose a file to verify") + translationManager.emptyString;
folder: "file://"
nameFilters: [ "*"]
diff --git a/pages/Transfer.qml b/pages/Transfer.qml
index 84542148..6714d248 100644
--- a/pages/Transfer.qml
+++ b/pages/Transfer.qml
@@ -41,7 +41,7 @@ Rectangle {
signal sweepUnmixableClicked()
color: "#F0EEEE"
- property string startLinkText: " (Start daemon)"
+ property string startLinkText: qsTr(" (Start daemon)") + translationManager.emptyString
property bool showAdvanced: false
function scaleValueToMixinCount(scaleValue) {
@@ -462,7 +462,7 @@ Rectangle {
Label {
id: costLabel
fontSize: 14
- text: qsTr("Transaction cost")
+ text: qsTr("Transaction cost") + translationManager.emptyString
anchors.right: parent.right
}
}
@@ -581,7 +581,7 @@ Rectangle {
//SignTxDialog
FileDialog {
id: signTxDialog
- title: "Please choose a file"
+ title: qsTr("Please choose a file") + translationManager.emptyString
folder: "file://" +moneroAccountsDir
nameFilters: [ "Unsigned transfers (*)"]
@@ -642,7 +642,7 @@ Rectangle {
//SignTxDialog
FileDialog {
id: submitTxDialog
- title: "Please choose a file"
+ title: qsTr("Please choose a file") + translationManager.emptyString
folder: "file://" +moneroAccountsDir
nameFilters: [ "signed transfers (*)"]
diff --git a/translations/monero-core_ar.ts b/translations/monero-core_ar.ts
index db556265..daad0c24 100644
--- a/translations/monero-core_ar.ts
+++ b/translations/monero-core_ar.ts
@@ -48,6 +48,11 @@
Description <font size='2'>(Optional)</font>
+
+
+ Add
+
+ Error
@@ -73,11 +78,6 @@
Give this entry a name or description
-
-
- ADD
-
- AddressBookTable
@@ -131,28 +131,18 @@
DaemonManagerDialog
-
- Daemon doesn't appear to be running
+
+ Starting Monero daemon in %1 seconds
-
- Start daemon
+
+ Start daemon (%1)
-
- Cancel
-
-
-
-
- Daemon startup flags
-
-
-
-
- (optional)
+
+ Use custom settings
@@ -241,7 +231,7 @@
- FILTER
+ Filter
@@ -455,105 +445,115 @@
-
- Unlocked Balance:
+
+ Unlocked BalanceMining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -561,27 +561,32 @@
NetworkStatusItem
-
- Connected
+
+ Synchronizing
- Wrong version
-
-
-
-
- Disconnected
+ Connected
+ Wrong version
+
+
+
+
+ Disconnected
+
+
+
+ Invalid connection status
-
+ Network status
@@ -599,12 +604,12 @@
-
+ Cancel
-
+ Ok
@@ -612,30 +617,35 @@
PrivacyLevelSmall
-
- LOW
+
+ Low
-
- MEDIUM
+
+ Medium
-
- HIGH
+
+ HighProgressBar
-
- Synchronizing blocks %1/%2
+
+ Establishing connection...
-
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocks
@@ -702,6 +712,11 @@
ReadOnly wallet address displayed here
+
+
+ 16 hexadecimal characters
+
+ Integrated address
@@ -747,11 +762,6 @@
Payment ID
-
-
- 16 or 64 hexadecimal characters
-
- Generate
@@ -803,144 +813,142 @@
Settings
-
-
- Click button to show seed
-
-
-
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Show seed
-
+ Manage daemon
-
+ Start daemon
-
+ Stop daemon
-
- Show log
+
+ Show status
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+ Daemon address
-
+ Hostname / IP
-
+ Port
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+
+
+
+ Save
-
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon log
-
+
+ Wallet mnemonic seed
+
+
+
+ Error
-
+ Wrong password
-
+ Manage wallet
-
+ Close wallet
@@ -986,7 +994,24 @@
- SIGN
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
@@ -995,12 +1020,6 @@
Or file:
-
-
-
- SELECT
-
- Filename with message to sign
@@ -1025,9 +1044,8 @@
-
-
- VERIFY
+
+ Please choose a file to verify
@@ -1044,12 +1062,12 @@
StandardDialog
-
+ Ok
-
+ Cancel
@@ -1058,232 +1076,213 @@
TickDelegate
- NORMAL
+ Normal
- MEDIUM
+ Medium
- HIGH
+ HighTransfer
-
+ OpenAlias error
-
- Privacy level (ring size %1)
-
-
-
-
+ Amount
-
+ Transaction priority
-
- ALL
-
-
-
-
- LOW (x1 fee)
-
-
-
-
- MEDIUM (x20 fee)
-
-
-
-
- HIGH (x166 fee)
-
-
-
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
-
- QRCODE
-
-
-
-
- RESOLVE
-
-
-
-
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
-
+
+ Send
+
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ Error
-
+ Error:
-
-
+
+ Information
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount:
-
+
Fee:
-
+
-Ring size:
+Ringsize:
-
+ Confirmation
-
+ Can't submit transaction:
-
+ Money sent successfully
-
+ Wallet is not connected to daemon.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon
-
+ Waiting on daemon synchronization to finish
@@ -1293,35 +1292,65 @@ Please upgrade or connect to another daemon
-
+ Transaction cost
-
+ Payment ID <font size='2'>( Optional )</font>
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+ 16 or 64 hexadecimal characters
-
-
- SEND
-
-
-
-
- Advanced
-
-
-
-
- SWEEP UNMIXABLE
-
- TxKey
@@ -1376,13 +1405,13 @@ Please upgrade or connect to another daemon
-
- Transaction key
+
+ Check
-
- CHECK
+
+ Transaction key
@@ -1427,7 +1456,7 @@ Please upgrade or connect to another daemon
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1439,11 +1468,6 @@ Please upgrade or connect to another daemon
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1481,59 +1505,64 @@ Please upgrade or connect to another daemon
WizardFinish
-
-
-
+
+
+ Enabled
-
-
-
+
+
+ Disabled
-
+ Language
-
+ Wallet name
-
+ Backup seed
-
+ Wallet path
-
+ Daemon address
-
+ Testnet
-
+ Restore height
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
@@ -1543,43 +1572,43 @@ Please upgrade or connect to another daemon
WizardMain
-
+ A wallet with same name already exists. Please change wallet name
-
+ Non-ASCII characters are not allowed in wallet path or account name
-
+ USE MONERO
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ Error
-
+ Abort
@@ -1587,47 +1616,47 @@ Please upgrade or connect to another daemon
WizardManageWalletUI
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored in
-
+ Please choose a directory
@@ -1648,27 +1677,27 @@ Please upgrade or connect to another daemon
WizardOptions
-
+ Welcome to Monero!
-
+ Please select one of the following options:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1678,7 +1707,7 @@ Please upgrade or connect to another daemon
-
+ Testnet
@@ -1686,13 +1715,13 @@ Please upgrade or connect to another daemon
WizardPassword
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1701,7 +1730,7 @@ Please upgrade or connect to another daemon
WizardPasswordUI
-
+ Password
@@ -1713,26 +1742,21 @@ Please upgrade or connect to another daemon
WizardRecoveryWallet
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
-
- Welcome
+
+ Welcome to Monero!
-
+ Please choose a language and regional format.
@@ -1740,200 +1764,235 @@ Please upgrade or connect to another daemon
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Error
-
+ Couldn't open wallet:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balance
-
+ Waiting for daemon to start...
-
+ Waiting for daemon to stop...
-
+ Can't create transaction: Wrong daemon version:
-
-
+
+ Can't create transaction:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ Confirmation
-
-
+
+ Please confirm transaction:
-
+
Address:
-
+
Payment ID:
-
-
+
+
Amount:
-
-
+
+
Fee:
-
-
-
-Ring size:
-
-
-
-
+ This address received %1 monero, with %2 confirmation(s).
-
+
Number of transactions:
-
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+
+
+
+Ringsize:
+
+
+
+
Description:
-
+ Amount is wrong: expected number from %1 to %2
-
+ insufficient funds. Unlocked balance: %1
-
+ Couldn't send the money:
-
+ Information
-
+ Money sent successfully: %1 transaction(s)
-
+ Transaction saved to file: %1
-
+ Payment check
-
+ This address received %1 monero, but the transaction is not yet mined
-
+ This address received nothing
-
+ Balance (syncing)
-
+ Balance
-
+ Please wait...
-
+ Program setup wizard
-
+ Monero
-
+ send to the same destination
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
diff --git a/translations/monero-core_br.ts b/translations/monero-core_br.ts
index acb9a119..327b2098 100644
--- a/translations/monero-core_br.ts
+++ b/translations/monero-core_br.ts
@@ -4,55 +4,95 @@
AddressBook
-
+ Add new entryAdicionar novo endereço
-
-
+ AddressEndereço
-
+ <b>Tip tekst test</b>
-
+
+ QRCODE
+
+
+
+
+ 4...
+
+
+
+ Payment ID <font size='2'>(Optional)</font>ID do Pagamento <font size='2'>(Opcional)</font>
-
+ <b>Payment ID</b><br/><br/>A unique user name used in<br/>the address book. It is not a<br/>transfer of information sent<br/>during the transfer<b>ID do Pagamento</b><br/><br/>Um nome único utilizado na<br/>caderneta de endereços. Não é uma<br/>transferência de informação enviada<br/>durante a transferência
-
- Description <font size='2'>(Local database)</font>
- Descrição <font size='2'>(Banco de dados local)</font>
+
+ Paste 64 hexadecimal characters
+
-
+
+ Description <font size='2'>(Optional)</font>
+
+
+
+
+ Give this entry a name or description
+
+
+
+
+ Add
+
+
+
+
+ Error
+ Erros
+
+
+
+ Invalid address
+
+
+
+
+ Can't create entry
+
+
+
+ Description <font size='2'>(Local database)</font>
+ Descrição <font size='2'>(Banco de dados local)</font>
+
+
+ <b>Tip test test</b><br/><br/>test line 2
- ADD
- ADICIONAR
+ ADICIONAR
- Payment ID
- ID do Pagamento
+ ID do Pagamento
- Description
- Descrição
+ Descrição
@@ -92,16 +132,45 @@
- DaemonProgress
+ DaemonConsole
-
- Synchronizing blocks %1/%2
- Sincronizando blocos %1/%2
+
+ Close
+
+
+
+
+ command + enter (e.g help)
+
+
+
+
+ DaemonManagerDialog
+
+
+ Starting Monero daemon in %1 seconds
+
+
+
+
+ Start daemon (%1)
+
+
+
+
+ Use custom settings
+
+
+
+
+ DaemonProgress
+
+ Synchronizing blocks %1/%2
+ Sincronizando blocos %1/%2
- Synchronizing blocks
- Sincronizando blocos
+ Sincronizando blocos
@@ -163,57 +232,63 @@
<b>Quantidade total de pagamentos selecionados</b>
-
+
+ Type for incremental search...
+
+
+
+
+ Filter
+
+
+ Incremental search
- Busca incremental
+ Busca incremental
- Search transfers for a given string
- Procurar por caracteres especificos nas transferências
+ Procurar por caracteres especificos nas transferências
- Type search string
- Digite os caracteres especificos a serem procurados
+ Digite os caracteres especificos a serem procurados
-
+ Date fromData a partir de
-
-
-
-
-
+
+
+
+
+ <b>Tip tekst test</b>
-
-
+
+ ToPara
- FILTER
- FILTRAR
+ FILTRAR
-
+ Advanced filteringFiltragem avançada
-
+ Type of transactionTipo de transação
-
+ Amount fromQuantidade a partir de
@@ -221,53 +296,73 @@
HistoryTable
-
+ Tx ID:ID da Transação:
-
-
+
+ Payment ID:ID do Pagamento:
-
+ Tx key:Chave da Transação:
-
+ Tx note:Observação sobre a Transação:
-
+
+ Destinations:
+
+
+
+ No more resultsSem mais resultados
-
+ DetailsDetalhes
-
+ BlockHeight:Altura de bloco:
-
+
+ (%1/10 confirmations)
+
+
+
+
+ UNCONFIRMED
+
+
+
+
+ PENDING
+
+
+
+ DateData
-
+ AmountQuantidade
-
+ FeeTaxa
@@ -275,78 +370,120 @@
LeftPanel
-
+ BalanceSaldo
-
+ Test tip 1<br/><br/>line 2
-
+ Unlocked balanceSaldo desbloqueado
-
+ Test tip 2<br/><br/>line 2
-
+ SendEnviar
- T
- T
+ T
-
+ ReceiveReceber
-
+ RR
- Verify payment
- Verificar pagamento
+ Verificar pagamento
-
+ KK
-
+ HistoryHistórico
-
+
+ Address book
+
+
+
+
+ B
+
+
+
+ HH
-
+
+ Advanced
+
+
+
+
+ D
+
+
+
+
+ Mining
+
+
+
+
+ M
+
+
+
+
+ Check payment
+
+
+
+ Sign/verifyAssinar/Verificar
-
-
+
+ E
+
+
+
+ SS
-
+
+ I
+
+
+
+ SettingsPreferências
@@ -354,40 +491,161 @@
MiddlePanel
- Balance:
- Saldo:
+ Saldo:
- Unlocked Balance:
- Saldo desbloqueado:
+ Saldo desbloqueado:
+
+
+
+ Balance
+ Saldo
+
+
+
+ Unlocked Balance
+
+
+
+
+ Mining
+
+
+ Solo mining
+
+
+
+
+ (only available for local daemons)
+
+
+
+
+ Mining helps the Monero network build resilience.<br>
+
+
+
+
+ The more mining is done, the harder it is to attack the network.<br>
+
+
+
+
+ Mining also gives you a small chance to earn some Monero.<br>
+
+
+
+
+ Your computer will search for Monero block solutions.<br>
+
+
+
+
+ If you find a block, you will get the associated reward.<br>
+
+
+
+
+ CPU threads
+
+
+
+
+ (optional)
+
+
+
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+
+ Manage miner
+
+
+
+
+ Start mining
+
+
+
+
+ Error starting mining
+
+
+
+
+ Couldn't start mining.<br>
+
+
+
+
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
+
+
+
+
+ Stop mining
+
+
+
+
+ Status: not mining
+
+
+
+
+ Mining at %1 H/s
+
+
+
+
+ Not mining
+
+
+
+
+ Status:
+ NetworkStatusItem
-
+
+ Synchronizing
+
+
+
+ ConnectedConectado
-
+ Wrong versionVersão incorreta
-
+ DisconnectedDesconectado
-
+ Invalid connection statusEstado de conexão inválido
-
+ Network statusEstado da rede
@@ -395,17 +653,22 @@
PasswordDialog
-
+ Please enter wallet passwordPor favor digite a senha da carteira
-
+
+ Please enter wallet password for:<br>
+
+
+
+ CancelCancelar
-
+ OkOk
@@ -413,66 +676,175 @@
PrivacyLevelSmall
- LOW
- BAIXA
+ BAIXA
- MEDIUM
- MÉDIA
+ MÉDIA
- HIGH
- ALTA
+ ALTA
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+
+
+
+
+ ProgressBar
+
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+
+ Synchronizing blocks
+ Sincronizando blocosReceive
-
+ Invalid payment IDID do Pagamento inválida
+ WARNING: no connection to daemon
+
+
+
+
+ in the txpool: %1
+
+
+
+
+ %2 confirmations: %3 (%1)
+
+
+
+
+ 1 confirmation: %2 (%1)
+
+
+
+
+ No transaction found yet...
+
+
+
+
+ Transaction found
+
+
+
+
+ %1 transactions found
+
+
+
+
+ with more money (%1)
+
+
+
+
+ with not enough money (%1)
+
+
+
+ AddressEndereço
-
+ ReadOnly wallet address displayed hereEndereço da carteira de somente leitura mostrado aqui
-
+
+ 16 hexadecimal characters
+
+
+
+ Integrated addressEndereço Integrado
-
+ ReadOnly wallet integrated address displayed hereEndereço Integrado da carteira de somente leitura mostrado aquii
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Tracking <font size='2'> (</font><a href='#'>help</a><font size='2'>)</font>
+
+
+
+
+ Tracking payments
+
+
+
+
+ <p><font size='+2'>This is a simple sales tracker:</font></p><p>Click Generate to create a random payment id for a new customer</p> <p>Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).</p><p>This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.</p>It's up to you whether to accept unconfirmed transactions or not. It is likely they'll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).</p>
+
+
+
+
+ Save QrCode
+
+
+
+
+ Failed to save QrCode to
+
+
+
+
+ Save As
+
+
+
+ Payment IDID do Pagamento
- 16 or 64 hexadecimal characters
- 16 ou 64 caracteres hexadecimal
+ 16 ou 64 caracteres hexadecimal
-
+ GenerateGerar
-
-
+
+ AmountQuantidade
@@ -516,58 +888,158 @@
Settings
-
- Click button to show seed
- Clique no botão para mostra a semente
+ Clique no botão para mostra a semente
- Mnemonic seed:
- Palavras da semente:
+ Palavras da semente:
- It is very important to write it down as this is the only backup you will need for your wallet.
- É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira.
+ É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira.
-
+
+ Create view only wallet
+
+
+
+ Show seedMostrar semente
-
+
+ Manage daemon
+
+
+
+
+ Start daemon
+
+
+
+
+ Stop daemon
+
+
+
+
+ Show status
+
+
+
+
+ Daemon startup flags
+
+
+
+
+ (optional)
+
+
+
+ Daemon addressLocal do Daemon
-
+ Hostname / IPNome da máquina / IP
-
+ PortPorta
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ Senha
+
+
+ SaveSalvar
-
+
+ Layout settings
+
+
+
+
+ Custom decorations
+
+
+
+
+ Log level
+
+
+
+
+ (e.g. *:WARNING,net.p2p:DEBUG)
+
+
+
+
+ Version
+
+
+
+
+ GUI version:
+
+
+
+
+ Embedded Monero version:
+
+
+
+
+ Daemon log
+
+
+
+
+ Wallet mnemonic seed
+
+
+
+
+ Error
+ Erros
+
+
+
+ Wrong password
+
+
+
+ Manage walletConfigurar carteira
- Close current wallet and open wizard
- Fechar a carteira atual e abrir o assistente inicial
+ Fechar a carteira atual e abrir o assistente inicial
-
+ Close walletFechar carteira
@@ -613,8 +1085,39 @@
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
+
+
+
+
+ Please choose a file to verify
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+ SIGN
- ASSINAR
+ ASSINAR
@@ -623,10 +1126,8 @@
Ou arquivo:
-
- SELECT
- SELECIONAR
+ SELECIONAR
@@ -652,10 +1153,8 @@
Mensagem a ser verificada
-
- VERIFY
- VERIFICAR
+ VERIFICAR
@@ -663,20 +1162,19 @@
Nome do arquivo com mensagem a ser verificada
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Endereço que assina <font size='2'> ( Digite ou selecione da </font> <a href='#'>caderneta</a><font size='2'> de endereços )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Endereço que assina <font size='2'> ( Digite ou selecione da </font> <a href='#'>caderneta</a><font size='2'> de endereços )</font>StandardDialog
-
+ OkOk
-
+ CancelCancelar
@@ -684,125 +1182,379 @@
TickDelegate
- LOW
- BAIXA
+ BAIXA
+
+
+ MEDIUM
+ MÉDIA
+
+
+ HIGH
+ ALTA
+
+
+
+ Normal
+
- MEDIUM
- MÉDIA
+ Medium
+
- HIGH
- ALTA
+ High
+ Transfer
-
+
+ OpenAlias error
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+ AmountQuantidade
-
+ Transaction priorityPrioridade da transação
+
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ No valid address found at this OpenAlias address
+
+
+
+
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
+
+
+
+
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
+
+
+
+
+
+ Internal error
+
+
+
+
+ No address found
+
+
+
+
+ Description <font size='2'>( Optional )</font>
+
+
+
+
+ Saved to local wallet history
+
+
+
+
+ Send
+ Enviar
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+
+ create tx file
+
+
+
+
+ sign tx file
+
+
+
+
+ submit tx file
+
+
+
+
+ Rescan spent
+
+
+
+
+
+
+ Error
+ Erros
+
+
+
+ Error:
+
+
+
+
+
+ Information
+ Informação
+
+
+
+ Sucessfully rescanned spent outputs
+
+
+
+
+
+ Please choose a file
+
+
+
+
+ Can't load unsigned transaction:
+
+
+
+
+
+Number of transactions:
+
+Número de transações:
+
+
+
+
+Transaction #%1
+
+
+
+
+
+Recipient:
+
+
+
+
+
+payment ID:
+
+
+
+
+
+Amount:
+
+
+
+
+
+Fee:
+
+Taxa:
+
+
+
+
+Ringsize:
+
+
+
+
+ Confirmation
+ Confirmação
+
+
+
+ Can't submit transaction:
+
+
+
+
+ Money sent successfully
+
+
+
+
+
+ Wallet is not connected to daemon.
+
+
+
+
+ Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon
+
+
+
+
+ Waiting on daemon synchronization to finish
+
+
- or ALL
- ou TODAS
+ ou TODAS
- LOW
- BAIXA
+ BAIXA
- MEDIUM
- MÉDIA
+ MÉDIA
- HIGH
- ALTA
+ ALTA
- Privacy level
- Nível de privacidade
+ Nível de privacidade
-
+ Transaction costCusto da transação
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Endereço <font size='2'> ( Digite ou selecione um da </font> <a href='#'>caderneta</a><font size='2'> de endereços )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Endereço <font size='2'> ( Digite ou selecione um da </font> <a href='#'>caderneta</a><font size='2'> de endereços )</font>
-
+ Payment ID <font size='2'>( Optional )</font>ID do Pagamento <font size='2'>( Opcional )</font>
-
+ 16 or 64 hexadecimal characters16 ou 64 caracteres hexadecimal
- Description <font size='2'>( An optional description that will be saved to the local address book if entered )</font>
- Descrição <font size='2'>( Uma descrição opcional que será salva junto a caderneta de endereços local )</font>
+ Descrição <font size='2'>( Uma descrição opcional que será salva junto a caderneta de endereços local )</font>
- SEND
- ENVIAR
+ ENVIAR
- SWEEP UNMIXABLE
- LIMPAR NÃO MISTURÁVEL
+ LIMPAR NÃO MISTURÁVELTxKey
- You can verify that a third party made a payment by supplying:
- Você pode verificar que um terceiro realizou um pagamento informando:
+ Você pode verificar que um terceiro realizou um pagamento informando:
+
+
+ - the recipient address,
+ - o endereço do destinatário
+
+
+ - the transaction ID,
+ - a ID da transação
+
+
+ - the tx secret key supplied by the sender
+ - a chave secreta da transação informada pelo remetente
+
+
+ If a payment was made up of several transactions, each transaction must be checked, and the results added
+ Se um pagamento foi realizado através de várias transações, cada transação deve ser checada e os resultados agregados
+
+
+
+ Verify that a third party made a payment by supplying:
+
- - the recipient address,
- - o endereço do destinatário
+ - the recipient address
+
- - the transaction ID,
- - a ID da transação
+ - the transaction ID
+
- - the tx secret key supplied by the sender
- - a chave secreta da transação informada pelo remetente
+ - the secret transaction key supplied by the sender
+
- If a payment was made up of several transactions, each transaction must be checked, and the results added
- Se um pagamento foi realizado através de várias transações, cada transação deve ser checada e os resultados agregados
+ If a payment had several transactions then each must be checked and the results combined.
+
@@ -821,8 +1573,22 @@
+ Paste tx ID
+
+
+
+
+ Paste tx key
+
+
+
+
+ Check
+
+
+ Transaction ID here
- ID da Transação aqui
+ ID da Transação aqui
@@ -830,14 +1596,12 @@
Chave da Transação
- Transaction key here
- Chave da Transação aqui
+ Chave da Transação aqui
- CHECK
- VERIFICAR
+ VERIFICAR
@@ -853,42 +1617,57 @@
Iniciar a blockchain do Monero?
- It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira. Você terá que confirmar a semente na próxima tela.
+ É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira. Você terá que confirmar a semente na próxima tela.
-
+
+ It is very important to write it down as this is the only backup you will need for your wallet.
+ É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira.
+
+
+ Enable disk conservation mode?Habilitar modo de conservação de espaço no disco?
-
+ Disk conservation mode uses substantially less disk-space, but the same amount of bandwidth as a regular Monero instance. However, storing the full blockchain is beneficial to the security of the Monero network. If you are on a device with limited disk space, then this option is appropriate for you.Modo de conservação de espaço no disco usa menos espaço em disco porém a mesma quantidade de banda que o modo normal. Armazenar a blockchain completa ajuda a proteger a rede do Monero. Caso esteja em um dispositivo com espaço em disco limitado, esta opção é para você.
-
+ Allow background mining?Permitir mineração em segundo plano?
-
+ Mining secures the Monero network, and also pays a small reward for the work done. This option will let Monero mine when your computer is on mains power and is idle. It will stop mining when you continue working.A mineração protege a rede do Monero e gratifica o minerador com uma pequena quantidade de Monero pelo trabalho feito. Esta opção fará com que seu computador seja utilizado para minerar Monero quando estive ocioso. A mineração será interrompida quando você voltar a utilizar o computador.
+
+ WizardCreateViewOnlyWallet
+
+
+ Create view only wallet
+
+
+WizardCreateWallet
- A new wallet has been created for you
- Uma nova carteira foi criada para você
+ Uma nova carteira foi criada para você
- This is the 25 word mnemonic for your wallet
- Essas são as suas 25 palavras da semente para sua carteira
+ Essas são as suas 25 palavras da semente para sua carteira
+
+
+
+ Create a new wallet
+
@@ -927,97 +1706,182 @@
WizardFinish
-
-
-
+
+
+ EnabledAtivada
-
-
-
+
+
+ DisabledDesativada
-
+ LanguageIdioma
- Account name
- Nome da conta
+ Nome da conta
- Seed
- Semente
+ Semente
-
+
+ Wallet name
+
+
+
+
+ Backup seed
+
+
+
+ Wallet pathCaminho da carteira
-
+ Daemon addressEndereço do Daemon
-
+ TestnetTestnet
-
+ Restore heightRestaurar da altura
-
- An overview of your Monero configuration is below:
- Segue abaixo uma visão-geral das configurações do seu Monero:
+
+ New wallet details:
+
+
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
+
+
+
+ An overview of your Monero configuration is below:
+ Segue abaixo uma visão-geral das configurações do seu Monero:
+
+ You’re all setup!
- Tudo pronto!
+ Tudo pronto!WizardMain
-
+ A wallet with same name already exists. Please change wallet nameUma carteira com o mesmo nome já existe. Por favor mude o nome da carteira
-
+
+ Non-ASCII characters are not allowed in wallet path or account name
+
+
+
+ USE MONEROUSAR O MONERO
+
+
+ Create wallet
+
+
+
+
+ Success
+
+
+
+
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
+%1
+
+
+
+
+ Error
+ Erros
+
+
+
+ Abort
+
+ WizardManageWalletUI
- This is the name of your wallet. You can change it to a different name if you’d like:
- Este é o nome da sua carteira. Você pode mudar para outro se preferir:
+ Este é o nome da sua carteira. Você pode mudar para outro se preferir:
- Restore height
- Altura de restauração
+ Altura de restauração
-
+
+ Wallet name
+
+
+
+
+ Restore from seed
+
+
+
+
+ Restore from keys
+
+
+
+
+ Account address (public)
+
+
+
+
+ View key (private)
+
+
+
+
+ Spend key (private)
+
+
+
+
+ Restore height (optional)
+
+
+
+ Your wallet is stored inSua carteira está armazenada em
-
+ Please choose a directoryPor favor escolha um diretório
@@ -1025,45 +1889,70 @@
WizardMemoTextInput
- It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira. Você terá que confirmar a semente na próxima tela.
+ É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira. Você terá que confirmar a semente na próxima tela.
+
+
+
+ Enter your 25 word mnemonic seed
+
+
+
+
+ This seed is <b>very</b> important to write down and keep secret. It is all you need to backup and restore your wallet.
+ WizardOptions
-
+ Welcome to Monero!Bem-vindo ao Monero!
-
+ Please select one of the following options:Por favor selecione uma das seguintes opções:
-
+
+ Create a new wallet
+
+
+
+
+ Restore wallet from keys or mnemonic seed
+
+
+
+
+ Open a wallet from file
+
+
+
+
+ Custom daemon address (optional)
+
+
+ This is my first time, I want to create a new account
- Esta é minha primeira execução do programa, quero criar uma nova carteira
+ Esta é minha primeira execução do programa, quero criar uma nova carteira
- I want to recover my account from my 25 word seed
- Quero recuperar minha carteira através das 25 palavras da semente
+ Quero recuperar minha carteira através das 25 palavras da semente
- I want to open a wallet from file
- Quero abrir uma carteira em um arquivo
+ Quero abrir uma carteira em um arquivo
- Please setup daemon address below.
- Por favor configure o endereço do daemon abaixo
+ Por favor configure o endereço do daemon abaixo
-
+ TestnetTestnet
@@ -1071,55 +1960,82 @@
WizardPassword
- Now that your wallet has been created, please set a password for the wallet
- Agora que sua carteira foi criada, por favor entre com uma senha para a carteira
+ Agora que sua carteira foi criada, por favor entre com uma senha para a carteira
- Now that your wallet has been restored, please set a password for the wallet
- Agora que sua carteira foi restaurada, por favor entre com uma senha para a carteira
+ Agora que sua carteira foi restaurada, por favor entre com uma senha para a carteira
- Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given<br/><br/>
Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.
- Atenção: esta senha não pode ser recuperada e se você esquecê-la terá que restaurar sua carteira através da semente<br/><br/>
+ Atenção: esta senha não pode ser recuperada e se você esquecê-la terá que restaurar sua carteira através da semente<br/><br/>
Sua senha será utilizada para proteger sua carteira e confirmar ações, tenha certeza que ela é segura o suficiente.
- Password
- Senha
+ Senha
- Confirm password
- Confirme a senha
+ Confirme a senha
+
+
+
+
+ Give your wallet a password
+
+
+
+
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
+ <b>Enter a strong password</b> (using letters, numbers, and/or symbols):
+
+
+
+
+ WizardPasswordUI
+
+
+ Password
+ Senha
+
+
+
+ Confirm password
+ Confirme a senhaWizardRecoveryWallet
- We're ready to recover your account
- Estamos prontos para recuperar sua conta
+ Estamos prontos para recuperar sua conta
- Please enter your 25 word private key
- Por favor entre com as 25 palavras da semente
+ Por favor entre com as 25 palavras da semente
+
+
+
+ Restore wallet
+ WizardWelcome
- Welcome
- Bem-vindo
+ Bem-vindo
-
+
+ Welcome to Monero!
+ Bem-vindo ao Monero!
+
+
+ Please choose a language and regional format.Por favor escolha um idioma e formato da localização
@@ -1127,77 +2043,111 @@
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorErros
-
+ Couldn't open wallet: Não foi possível abrir a carteira:
- Synchronizing blocks %1 / %2
- Sincronizando blocos %1 / %2
+ Sincronizando blocos %1 / %2
-
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Unlocked balance (~%1 min)
+
+
+
+
+ Unlocked balance
+ Saldo desbloqueado
+
+
+
+ Waiting for daemon to start...
+
+
+
+
+ Waiting for daemon to stop...
+
+
+
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+ Can't create transaction: Wrong daemon version: Não foi possível criar a transação: Versão do daemon incorreta:
-
-
+
+ Can't create transaction: Não foi possível criar a transação:
-
-
-
-
+
+
+
+ No unmixable outputs to sweepSem saídas impossiveis de serem misturadas para limpar
-
-
+
+ ConfirmationConfirmação
-
-
+
+ Please confirm transaction:
Por favor confirme a transação:
-
+
Address:
Endereço:
-
+
Payment ID:
ID do Pagamento:
-
-
+
+
Amount:
@@ -1206,31 +2156,62 @@ Amount:
Quantidade:
-
-
+
+
Fee:
Taxa:
-
+
+
+
+Ringsize:
+
+
+
+
+ This address received %1 monero, with %2 confirmation(s).
+
+
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
Mixin:
-
+
Mixin:
-
+
Number of transactions:
Número de transações:
-
+
Description:
@@ -1239,67 +2220,81 @@ Description:
Descrição:
-
+ Amount is wrong: expected number from %1 to %2Quantidade incorreta: aceitável vai de %1 até %2
-
+ insufficient funds. Unlocked balance: %1Saldo insuficiente. Total desbloqueado: %1
-
+ Couldn't send the money: Não foi possível enviar as moedas:
-
+ InformationInformação
-
+ Money sent successfully: %1 transaction(s) Moedas enviadas com sucesso: %1 transação(ões)
-
+
+ Transaction saved to file: %1
+
+
+
+ Payment checkVerificação de pagamento
-
+ This address received %1 monero, but the transaction is not yet minedEste endereço recebeu %1 monero, porém a transação ainda não foi minerada
- This address received %1 monero, with %2 confirmations
- Este endereço recebeu %1 monero, com %2 confirmações
+ Este endereço recebeu %1 monero, com %2 confirmações
-
+ This address received nothingEste endereço não recebeu moedas
-
+
+ Balance (syncing)
+
+
+
+
+ Balance
+ Saldo
+
+
+ Please wait...Por favor aguarde...
-
+ Program setup wizardAssistente de configuração do programa
-
+ MoneroMonero
-
+ send to the same destinationenviar ao mesmo destino
diff --git a/translations/monero-core_de.ts b/translations/monero-core_de.ts
index 205be396..5f513cdf 100644
--- a/translations/monero-core_de.ts
+++ b/translations/monero-core_de.ts
@@ -58,6 +58,11 @@
Give this entry a name or description
+
+
+ Add
+
+ Error
@@ -82,9 +87,8 @@
Beschreibung <font size='2'>(Lokale Datenbank)</font>
- ADD
- NEU
+ NEUPayment ID
@@ -147,28 +151,30 @@
DaemonManagerDialog
- Daemon doesn't appear to be running
- Daemon scheint nicht aktiv zu sein
+ Daemon scheint nicht aktiv zu sein
- Start daemon
- Starte den Deamon
+ Starte den Deamon
- Cancel
- Abbrechen
+ Abbrechen
-
- Daemon startup flags
+
+ Starting Monero daemon in %1 seconds
-
- (optional)
+
+ Start daemon (%1)
+
+
+
+
+ Use custom settings
@@ -250,6 +256,11 @@
<b>Total amount of selected payments</b><b>Gesamtbetrag der ausgewählten Zahlungen</b>
+
+
+ Filter
+
+ Incremental searchInkrementelle Suche
@@ -279,9 +290,8 @@
bis
- FILTER
- FILTER
+ FILTER
@@ -506,105 +516,119 @@
Guthaben
-
+
+ Unlocked Balance
+
+
+ Unlocked Balance:
- Verfügbares Guthaben:
+ Verfügbares Guthaben:Mining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -612,27 +636,32 @@
NetworkStatusItem
-
+ Network statusNetzwerkstatus
-
+ ConnectedVerbunden
-
+
+ Synchronizing
+
+
+
+ Wrong versionFalsche Version
-
+ DisconnectedGetrennt
-
+ Invalid connection statusUngültiger Verbindungsstatus
@@ -650,12 +679,12 @@
Bitte gebe dein Wallet Passwort ein:<br>
-
+ CancelAbbrechen
-
+ OkOk
@@ -663,30 +692,51 @@
PrivacyLevelSmall
- LOW
- NIEDRIG
+ NIEDRIG
- MEDIUM
- MITTEL
+ MITTEL
- HIGH
- HOCH
+ HOCH
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+ ProgressBar
- Synchronizing blocks %1/%2
- Synchronisiere Block %1/%2
+ Synchronisiere Block %1/%2
-
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocksSynchronisiere Blöcke
@@ -753,6 +803,11 @@
ReadOnly wallet address displayed hereSchreibgeschütztes Wallet wird hier angezeigt
+
+
+ 16 hexadecimal characters
+
+ Integrated address
@@ -784,9 +839,8 @@
Zahlungs-ID
- 16 or 64 hexadecimal characters
- 16 oder 64 Hexadezimal-Zeichen
+ 16 oder 64 Hexadezimal-Zeichen
@@ -854,24 +908,16 @@
Settings
-
- Click button to show seed
- Schlatfläche drücken um die Wiederherstellungs-Wörter einzusehen
+ Schlatfläche drücken um die Wiederherstellungs-Wörter einzusehen
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
+ ErrorFehler
-
+ Wrong passwordFalsches Passwort
@@ -884,17 +930,17 @@
Es ist wichtig, dass Sie sich die Wörter notieren, da Sie damit Ihr Wallet wiederherstellen können.
-
+ Show seedWörter anzeigen
-
+ Daemon addressDaemon-Adresse
-
+ Manage walletWallet verwalten
@@ -903,107 +949,121 @@
Dieses Wallet schließen und Wizard öffnen
-
+ Close walletWallet schließen
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Manage daemonDaemon verwalten
-
+ Start daemonStarte den Deamon
-
+ Stop daemonStoppe den Deamon
- Show log
- Zeige Bericht
+ Zeige Bericht
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ Passwort
+
+
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon logDeamon Bericht
-
+
+ Wallet mnemonic seed
+
+
+
+ Hostname / IPHostname / IP
-
+
+ Show status
+
+
+
+ PortPort
-
+ SaveSpeichern
@@ -1049,8 +1109,34 @@
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
+
+
+
+
+ Please choose a file to verify
+
+
+ SIGN
- SIGNIEREN
+ SIGNIEREN
@@ -1059,10 +1145,8 @@
Oder Datei:
-
- SELECT
- AUSWÄHLEN
+ AUSWÄHLEN
@@ -1088,10 +1172,8 @@
Zu verifizierende Nachricht
-
- VERIFY
- VERIFIZIEREN
+ VERIFIZIEREN
@@ -1107,12 +1189,12 @@
StandardDialog
-
+ OkOk
-
+ CancelAbbrechen
@@ -1123,31 +1205,39 @@
LOWNIEDRIG
+
+ MEDIUM
+ MITTEL
+
+
+ HIGH
+ HOCH
+
- NORMAL
+ Normal
- MEDIUM
- MITTEL
+ Medium
+
- HIGH
- HOCH
+ High
+ Transfer
-
+ AmountBetrag
-
+ Transaction priorityPriorität
@@ -1173,185 +1263,228 @@
oder ALLES
-
+ OpenAlias error
-
- Privacy level (ring size %1)
-
-
-
-
- ALL
-
-
-
- LOW (x1 fee)
- Niedrig (x1 Gebühr)
+ Niedrig (x1 Gebühr)
- MEDIUM (x20 fee)
- Mittel (x20 Gebühr)
+ Mittel (x20 Gebühr)
- HIGH (x166 fee)
- Hoch (x166 Gebühr)
+ Hoch (x166 Gebühr)
-
- QRCODE
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
-
- RESOLVE
+
+ Privacy level (ringsize %1)
-
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
-
+
+ Send
+ Senden
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ ErrorFehler
-
+ Error:
-
-
+
+ InformationInformation
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions:
-
+ Anzahl an Transaktionen:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount:
Betrag:
-
+
Fee:
Gebühr:
-
+
-Ring size:
+Ringsize:
-
+ ConfirmationBestätigung
-
+ Can't submit transaction:
-
+ Money sent successfully
@@ -1360,30 +1493,25 @@ Ring size:
Privatsphärelevel
-
+ Transaction costTransaktionskosten
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
-
+ Wallet is not connected to daemon.Wallet ist nicht mit dem Deamon verbunden.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemonDer verbundene Deamon ist nicht mit der GUI kompatibel.
Bitte installiere die neuste Version oder verbinde dich zu einem anderen Deamon.
-
+ Waiting on daemon synchronization to finish
@@ -1392,12 +1520,12 @@ Please upgrade or connect to another daemon
<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adresse <font size='2'> (Eintippen oder aus dem </font> <a href='#'>Adressbuch</a><font size='2'> auswählen )</font>
-
+ Payment ID <font size='2'>( Optional )</font>Zahlungs-ID <font size='2'>( Optional )</font>
-
+ 16 or 64 hexadecimal characters16 oder 64 Hexadezimalzeichen
@@ -1406,19 +1534,8 @@ Please upgrade or connect to another daemon
Beschreibung <font size='2'>(Eine optionale Beschreibung die im lokalen Adressbuch gespeichert wird)</font>
- SEND
- SENDEN
-
-
-
- Advanced
-
-
-
-
- SWEEP UNMIXABLE
-
+ SENDEN
@@ -1468,6 +1585,11 @@ Please upgrade or connect to another daemon
Paste tx keyFüge tx-ID ein
+
+
+ Check
+
+ Transaction key
@@ -1479,9 +1601,8 @@ Please upgrade or connect to another daemon
- CHECK
- PRÜFE
+ PRÜFE
@@ -1529,7 +1650,7 @@ Please upgrade or connect to another daemon
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1549,11 +1670,6 @@ Please upgrade or connect to another daemon
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1591,21 +1707,21 @@ Please upgrade or connect to another daemon
WizardFinish
-
-
-
+
+
+ EnabledAktiviert
-
-
-
+
+
+ DisabledDeaktiviert
-
+ LanguageSprache
@@ -1618,40 +1734,45 @@ Please upgrade or connect to another daemon
Wiederherstellungs-Wörter
-
+ Wallet name
-
+ Backup seed
-
+ Wallet pathWallet-Speicherort
-
+ Daemon addressDaemon-Adresse
-
+ TestnetTestnet
-
+ Restore heightWiederherstellungspunkt
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ An overview of your Monero configuration is below:Hier ist die Zusammenfassung deiner Konfiguration:
@@ -1669,43 +1790,43 @@ Please upgrade or connect to another daemon
WizardMain
-
+ A wallet with same name already exists. Please change wallet nameEin Wallet mit diesem Namen ist bereits vorhanden. Bitte ändere den Wallet-Namen
-
+ Non-ASCII characters are not allowed in wallet path or account nameNur ASCII Zeichen sind im Walletpfad oder im Walletname erlaubt.
-
+ USE MONEROVERWENDE MONERO
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ ErrorFehler
-
+ Abort
@@ -1725,47 +1846,47 @@ Please upgrade or connect to another daemon
Wiederherstellungspunkt
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored inDein Wallet ist hier gespeichert
-
+ Please choose a directoryWähle einen Speicherort
@@ -1794,27 +1915,27 @@ Please upgrade or connect to another daemon
WizardOptions
-
+ Welcome to Monero!Willkommen zu Monero!
-
+ Please select one of the following options:Bitte wähle eine der folgenden Optionen:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1840,7 +1961,7 @@ Please upgrade or connect to another daemon
Bitte Daemon-Adresse unten einstellen.
-
+ TestnetTestnet
@@ -1870,13 +1991,13 @@ Please upgrade or connect to another daemon
Passwort bestätigen
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1885,7 +2006,7 @@ Please upgrade or connect to another daemon
WizardPasswordUI
-
+ PasswordPasswort
@@ -1905,26 +2026,25 @@ Please upgrade or connect to another daemon
Please enter your 25 word private keyBitte gib die Wiederherstellungs-Wörter ein
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
- Welcome
- Willkommen
+ Willkommen
-
+
+ Welcome to Monero!
+ Willkommen zu Monero!
+
+
+ Please choose a language and regional format.Bitte wähle eine Sprache und ein Anzeigeformat.
@@ -1932,19 +2052,19 @@ Please upgrade or connect to another daemon
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorFehler
-
+ Couldn't open wallet: Wallet konnte nicht geöffnet werden:
@@ -1953,29 +2073,29 @@ Please upgrade or connect to another daemon
Synchronisiere Blöcke %1 / %2
-
+ Can't create transaction: Wrong daemon version: Transaktion konnte nicht erstellt werden: Falsche Daemon-Version:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ Please confirm transaction:
Bitte bestätige die Transaktion:
-
-
+
+
Amount:
@@ -1984,89 +2104,130 @@ Amount:
Betrag:
-
+
+
+
+Ringsize:
+
+
+
+
Number of transactions: Anzahl an Transaktionen:
-
+
Description: Beschreibung:
-
+ Amount is wrong: expected number from %1 to %2
-
+ Money sent successfully: %1 transaction(s) Geld erfolgreich verschickt: %1 Transaktion(en)
-
+ Payment checkZahlungscheck
-
+ This address received %1 monero, but the transaction is not yet minedDiese Adresse hat %1 Monero empfangen, aber die Transaktion wurde noch nicht geminet.
-
- This address received %1 monero, with %2 confirmations
- Diese Adresse hat %1 Monero empfangen, mit %2 Bestätigungen
+
+ Daemon is running
+
-
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+ Stoppe den Deamon
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
+ This address received %1 monero, with %2 confirmations
+ Diese Adresse hat %1 Monero empfangen, mit %2 Bestätigungen
+
+
+ This address received nothingDie Adresse hat nichts empfangen.
-
-
+
+ Can't create transaction: Transaktion konnte nicht erstellt werden:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balanceVerfügbares Guthaben
-
+
+ Unlocked balance (waiting for block)
+
+
+
+ Waiting for daemon to start...Warte auf Start des Deamons...
-
+ Waiting for daemon to stop...Warte bis der Demon beendet wird...
-
-
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+
+ ConfirmationBestätigung
-
+
Address:
Adresse:
-
+
Payment ID:
@@ -2079,72 +2240,65 @@ Amount:
Betrag:
-
-
+
+
Fee:
Gebühr:
-
-
-
-Ring size:
-
-
-
-
+ insufficient funds. Unlocked balance: %1
-
+ Couldn't send the money: Geld konnte nicht versendet werden
-
+ InformationInformation
-
+ Transaction saved to file: %1
-
+ This address received %1 monero, with %2 confirmation(s).
-
+ Balance (syncing)
-
+ BalanceGuthaben
-
+ Please wait...Bitte warten...
-
+ Program setup wizardInstallations - Assistent
-
+ Monero
-
+ send to the same destinationan die selbe Adresse senden
diff --git a/translations/monero-core_eo.ts b/translations/monero-core_eo.ts
index 6d52b114..7ef4f2af 100644
--- a/translations/monero-core_eo.ts
+++ b/translations/monero-core_eo.ts
@@ -4,59 +4,95 @@
AddressBook
-
+ Add new entryAldonu novan kontakton
-
-
+ AddressAdreso
-
+ <b>Tip tekst test</b>
-
+
+ QRCODE
+
+
+
+
+ 4...
+
+
+
+ Payment ID <font size='2'>(Optional)</font>paga-ID <font size='2'>(Optional)</font>
-
+ <b>Payment ID</b><br/><br/>A unique user name used in<br/>the address book. It is not a<br/>transfer of information sent<br/>during the transfer<b>Betaal-ID</b><br/><br/>Unika uzantnomo uzita en<br/>la adresaron. Tio informo ne senditos a<br/>kun la transakcio
-
+
+ Paste 64 hexadecimal characters
+
+
+
+
+ Description <font size='2'>(Optional)</font>
+
+
+
+ <b>Tip test test</b><br/><br/>test line 2
- <b>Payment ID</b><br/><br/>A unique user name used in<br/>the address book. It is not a<br/>transfer of information sent<br/>during the transfer
- <b>Paga-ID</b><br/><br/>Unika uzantnomo uzita en<br/>la adresaron. Tio informo ne senditos a<br/>kun la transakcio
+
+ Give this entry a name or description
+
+
+
+
+ Add
+
+
+
+
+ Error
+ Eraro
+
+
+
+ Invalid address
+
+
+
+
+ Can't create entry
+
- Description <font size='2'>(Local database)</font>
- Priskribo <font size='2'>(Loka datumbazo)</font>
+ Priskribo <font size='2'>(Loka datumbazo)</font>
- ADD
- ALDONU
+ ALDONU
- Payment ID
- Paga-ID
+ Paga-ID
- Description
- Priskribo
+ Priskribo
@@ -95,33 +131,58 @@
2324.9239845
+
+ DaemonConsole
+
+
+ Close
+
+
+
+
+ command + enter (e.g help)
+
+
+DaemonManagerDialog
- Daemon doesn't appear to be running
- Ŝajnas ke la demono ne funkcias
+ Ŝajnas ke la demono ne funkcias
- Start daemon
- Enŝaltu demonon
+ Enŝaltu demonon
- Cancel
- Nuligu
+ Nuligu
+
+
+
+ Starting Monero daemon in %1 seconds
+
+
+
+
+ Start daemon (%1)
+
+
+
+
+ Use custom settings
+ DaemonProgressSynchronizing blocks %1/%2
- Sinkronigado de blokoj %1/%2
+ Sinkronigado de blokoj %1/%2Synchronizing blocks
- Sinkronigado de blokoj
+ Sinkronigado de blokoj
@@ -191,6 +252,11 @@
<b>Total amount of selected payments</b><b>Totalkvanto de selektitaj pagoj</b>
+
+
+ Filter
+
+ Incremental searchPliiganta serĉo
@@ -206,7 +272,7 @@
Type for incremental search...
- Tajpu por pliiganta serĉo...
+ Tajpu por pliiganta serĉo...
@@ -220,9 +286,8 @@
Al
- FILTER
- FILTRU
+ FILTRU
@@ -247,58 +312,73 @@
HistoryTable
-
+ No more resultsNe plu da rezultoj
-
-
+
+ Payment ID:Paga-ID:
-
+ Tx ID:Tr ID:
-
+ Tx key:Tr ŝlosilo
-
+ Tx note:Tr noto
-
+ Destinations:Destinoj
-
+ DetailsDetaloj
-
+ BlockHeight:Blokalteco
-
+
+ (%1/10 confirmations)
+
+
+
+
+ UNCONFIRMED
+
+
+
+
+ PENDING
+
+
+
+ DateDato
-
+ FeeKosto
-
+ AmountKvanto
@@ -306,78 +386,120 @@
LeftPanel
-
+ BalanceSaldo
-
+ Test tip 1<br/><br/>line 2
-
+ Unlocked balanceDisponebla saldo
-
+ Test tip 2<br/><br/>line 2
-
+ SendSendu
- T
- T
+ T
-
+ ReceiveRicevu
-
+ RR
- Verify payment
- Kontrolu pagon
+ Kontrolu pagon
-
+ KK
-
+ HistoryHistorio
-
+
+ Address book
+
+
+
+
+ B
+
+
+
+ HH
-
+
+ Advanced
+
+
+
+
+ D
+
+
+
+
+ Mining
+
+
+
+
+ M
+
+
+
+
+ Check payment
+
+
+
+ Sign/verifySubskribu/kontrolu
-
+
+ I
+
+
+
+ SettingsAgordoj
-
-
+
+ E
+
+
+
+ SA
@@ -385,40 +507,161 @@
MiddlePanel
- Balance:
- Saldo:
+ Saldo:
- Unlocked Balance:
- Disponebla Saldo:
+ Disponebla Saldo:
+
+
+
+ Balance
+ Saldo
+
+
+
+ Unlocked Balance
+
+
+
+
+ Mining
+
+
+ Solo mining
+
+
+
+
+ (only available for local daemons)
+
+
+
+
+ Mining helps the Monero network build resilience.<br>
+
+
+
+
+ The more mining is done, the harder it is to attack the network.<br>
+
+
+
+
+ Mining also gives you a small chance to earn some Monero.<br>
+
+
+
+
+ Your computer will search for Monero block solutions.<br>
+
+
+
+
+ If you find a block, you will get the associated reward.<br>
+
+
+
+
+ CPU threads
+
+
+
+
+ (optional)
+
+
+
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+
+ Manage miner
+
+
+
+
+ Start mining
+
+
+
+
+ Error starting mining
+
+
+
+
+ Couldn't start mining.<br>
+
+
+
+
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
+
+
+
+
+ Stop mining
+
+
+
+
+ Status: not mining
+
+
+
+
+ Mining at %1 H/s
+
+
+
+
+ Not mining
+
+
+
+
+ Status:
+ NetworkStatusItem
-
+ Network statusRetstatuso
-
+ ConnectedKonektita
-
+
+ Synchronizing
+
+
+
+ Wrong versionMalĝusta versio
-
+ DisconnectedMalkonektita
-
+ Invalid connection statusMalĝusta retstatuso
@@ -426,22 +669,22 @@
PasswordDialog
-
+ Please enter wallet passwordBonvolu tajpi monujpasvorton
-
+ Please enter wallet password for:<br>Bonvolu tajpi monujpasvorton por:<br>
-
+ CancelNuligu
-
+ OkBone
@@ -449,30 +692,51 @@
PrivacyLevelSmall
- LOW
- MALALTA
+ MALALTA
- MEDIUM
- MEZA
+ MEZA
- HIGH
- ALTA
+ ALTA
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+ ProgressBar
- Synchronizing blocks %1/%2
- Sinkronigado de blokoj %1/%2
+ Sinkronigado de blokoj %1/%2
-
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocksSinkronigado de blokoj
@@ -540,24 +804,43 @@
Nurlegebla monujadreso montrata tie ĉi
-
+
+ 16 hexadecimal characters
+
+
+
+ Integrated addressIntegrita adreso
-
+ ReadOnly wallet integrated address displayed hereNurlegebla integrita monujadreso montrata tie ĉi
-
+
+ Save QrCode
+
+
+
+
+ Failed to save QrCode to
+
+
+
+
+ Save As
+
+
+
+ Payment IDPaga-ID
- 16 or 64 hexadecimal characters
- 16 aŭ 64 deksesuma karaktroj
+ 16 aŭ 64 deksesuma karaktroj
@@ -581,7 +864,7 @@
-
+ GenerateGeneru
@@ -625,96 +908,165 @@
Settings
-
- Click button to show seed
- Klaku butonon por montri semon
+ Klaku butonon por montri semon
-
+ ErrorEraro
-
+ Wrong passwordMalĝusta pasvorto
- Mnemonic seed:
- Mnemonika semo
+ Mnemonika semo
- It is very important to write it down as this is the only backup you will need for your wallet.
- Ĝi gravegas noti tion ĉi ĉar ĝi estas la sola bakupo por restaŭri vian monujon.
+ Ĝi gravegas noti tion ĉi ĉar ĝi estas la sola bakupo por restaŭri vian monujon.
-
+ Show seedMontru semon
-
+ Daemon addressDemonadreso
-
+ Manage walletAdministru monujon
- Close current wallet and open wizard
- Fermu nunan monujon kaj komencigu asistanton
+ Fermu nunan monujon kaj komencigu asistanton
-
+ Close walletFermu monujon
-
+
+ Create view only wallet
+
+
+
+ Manage daemonAdministru demonon
-
+ Start daemonKomencigu demonon
-
+ Stop daemonHaltigi demonon
- Show log
- Montru logon
+ Montru logon
-
+ Daemon logDemonlogo
-
+ Hostname / IPGastignomo / IP
-
+
+ Show status
+
+
+
+
+ Daemon startup flags
+
+
+
+
+ (optional)
+
+
+
+ PortPordo
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ Pasvorto
+
+
+ SaveKonservu
+
+
+ Layout settings
+
+
+
+
+ Custom decorations
+
+
+
+
+ Log level
+
+
+
+
+ (e.g. *:WARNING,net.p2p:DEBUG)
+
+
+
+
+ Version
+
+
+
+
+ GUI version:
+
+
+
+
+ Embedded Monero version:
+
+
+
+
+ Wallet mnemonic seed
+
+ Sign
@@ -757,8 +1109,39 @@
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
+
+
+
+
+ Please choose a file to verify
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+ SIGN
- SUBSKRIBU
+ SUBSKRIBU
@@ -767,10 +1150,8 @@
Aŭ dosiero:
-
- SELECT
- SELEKTU
+ SELEKTU
@@ -796,31 +1177,24 @@
Mesaĝo por kontroli
-
- VERIFY
- KONTROLU
+ KONTROLUFilename with message to verifyDosiernomo kun mesaĝo por kontroli
-
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
-
- StandardDialog
-
+ OkBone
-
+ CancelNuligu
@@ -828,44 +1202,279 @@
TickDelegate
- LOW
- MALALTA
+ MALALTA
+
+
+ MEDIUM
+ MEZA
+
+
+ HIGH
+ ALTA
+
+
+
+ Normal
+
- MEDIUM
- MEZA
+ Medium
+
- HIGH
- ALTA
+ High
+ Transfer
-
+
+ OpenAlias error
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+ AmountKvanto
-
+ Transaction priorityPrioritato de transakcio
+
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ No valid address found at this OpenAlias address
+
+
+
+
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
+
+
+
+
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
+
+
+
+
+
+ Internal error
+
+
+
+
+ No address found
+
+
+
+
+ Description <font size='2'>( Optional )</font>
+
+
+
+
+ Saved to local wallet history
+
+
+
+
+ Send
+ Sendu
+
+
+
+ Show advanced options
+
+
+
+
+ Transaction cost
+
+
+
+
+ Sweep Unmixable
+
+
+
+
+ create tx file
+
+
+
+
+ sign tx file
+
+
+
+
+ submit tx file
+
+
+
+
+ Rescan spent
+
+
+
+
+
+
+ Error
+ Eraro
+
+
+
+ Error:
+
+
+
+
+
+ Information
+ Informo
+
+
+
+ Sucessfully rescanned spent outputs
+
+
+
+
+
+ Please choose a file
+
+
+
+
+ Can't load unsigned transaction:
+
+
+
+
+
+Number of transactions:
+
+
+
+
+
+Transaction #%1
+
+
+
+
+
+Recipient:
+
+
+
+
+
+payment ID:
+
+
+
+
+
+Amount:
+
+
+
+
+
+Fee:
+
+
+
+
+
+Ringsize:
+
+
+
+
+ Confirmation
+ Konfirmo
+
+
+
+ Can't submit transaction:
+
+
+
+
+ Money sent successfully
+
+
+
+
+ Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon
+
+ LOW
- MALALTA
+ MALALTAMEDIUM
- MEZA
+ MEZAHIGH
- ALTA
+ ALTA
@@ -873,58 +1482,45 @@
- or ALL
- aŭ ĈIO
+ aŭ ĈIO
- LOW (x1 fee)
- MALALTA (x1 kosto)
+ MALALTA (x1 kosto)
- MEDIUM (x20 fee)
- MEZA (x20 kosto)
+ MEZA (x20 kosto)
- HIGH (x166 fee)
- ALTA (x166 kosto)
+ ALTA (x166 kosto)
- Privacy level
- Nivelo de privateco
+ Nivelo de privateco
- Transakcio cost
- Kosto de transakcio
+ Kosto de transakcio
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
- Description <font size='2'>( Optional - saved to local wallet history )</font>
- Priskribo <font size='2'>( Malnepra - konservita en loka monujhistorio )</font>
+ Priskribo <font size='2'>( Malnepra - konservita en loka monujhistorio )</font>
-
-
+
+ Wallet is not connected to daemon.Monujo ne konektitas al demono
- Connected daemon is not compatible with GUI. Please upgrade or connect to another daemon
- Konektita demono malkongruas kun GUI. Bonvolu plibonigi aŭ konekti al alia demono
+ Konektita demono malkongruas kun GUI. Bonvolu plibonigi aŭ konekti al alia demono
-
+ Waiting on daemon synchronization to finishAtendanti la fino de demonsinkronigado
@@ -933,12 +1529,12 @@
<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adres <font size='2'> (Vul in of selecteer van </font> <a href='#'>Adresboek</a><font size='2'> kiezen )</font>
-
+ Payment ID <font size='2'>( Optional )</font>Paga-ID <font size='2'>( Malnepra )</font>
-
+ 16 or 64 hexadecimal characters16 aŭ 64 deksesuma karaktroj
@@ -947,14 +1543,12 @@
Priskribo <font size='2'>( Malnepra priskribo kiu konservitos en la loka adresaro )</font>
- SEND
- SENDU
+ SENDU
- SWEEP UNMIXABLE
- BALAU NEMIKSEBLA
+ BALAU NEMIKSEBLA
@@ -980,9 +1574,13 @@
- la sekreta transakcio-ŝlosilo provizita per la sendinto
- If a payment had several transactions then each must must be checked and the results combined.
- Se pago havis plurajn transakciojn, ĉiu devas esti kontrolata kaj la rezultoj kombinataj.
+ Se pago havis plurajn transakciojn, ĉiu devas esti kontrolata kaj la rezultoj kombinataj.
+
+
+
+ If a payment had several transactions then each must be checked and the results combined.
+
@@ -1009,15 +1607,19 @@
Paste tx keyAlgluu Tr ŝlosilon
+
+
+ Check
+
+ Transaction keyTransakcio ŝlosilon
- CHECK
- KONTROLU
+ KONTROLU
@@ -1034,7 +1636,7 @@
It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- Ĝi gravegas noti tion ĉi ĉar ĝi estas la sola bakupo por restaŭri vian monujon. Vi demanditos konfirmi la semon en la sekva ekrano por certigi ke vi faris bonan kopion.
+ Ĝi gravegas noti tion ĉi ĉar ĝi estas la sola bakupo por restaŭri vian monujon. Vi demanditos konfirmi la semon en la sekva ekrano por certigi ke vi faris bonan kopion.
@@ -1062,17 +1664,28 @@
La minado sekurigas la Monerreto kaj vi ricevas rekompenceto por la laboro. Tio ĉi opcio ŝaltos la minadon kiam via komputilo uzas la kurentprovizon kaj estas senokupa. La minado haltos kiam vi daŭrigi uzi la komputilon.
+
+ WizardCreateViewOnlyWallet
+
+
+ Create view only wallet
+
+
+WizardCreateWallet
- A new wallet has been created for you
- Nova monujon kreitas pro vi
+ Nova monujon kreitas pro vi
- This is the 25 word mnemonic for your wallet
- Tio ĉi estas la 25-a vorta mnemoniko por via monujo.
+ Tio ĉi estas la 25-a vorta mnemoniko por via monujo.
+
+
+
+ Create a new wallet
+
@@ -1111,58 +1724,75 @@
WizardFinish
-
-
-
+
+
+ EnabledEbligita
-
-
-
+
+
+ DisabledMalebligita
-
+ LanguageLingvo
- Account name
- Nomo de monujo
+ Nomo de monujo
- Seed
- Semo
+ Semo
-
+
+ Wallet name
+
+
+
+
+ Backup seed
+
+
+
+ Wallet pathVojnomo de monujo
-
+ Daemon addressDemonadreso
-
+ TestnetTestreto
-
+ Restore heightRestaŭralteco
-
+
+ New wallet details:
+
+
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+
+ An overview of your Monero configuration is below:
- Superrigardo de via Monera Agordo estas sube:
+ Superrigardo de via Monera Agordo estas sube:
@@ -1171,50 +1801,109 @@
You’re all setup!
- Vi pretas!
+ Vi pretas!WizardMain
-
+ A wallet with same name already exists. Please change wallet nameMonujo kun la sama nomo jam ekzistas. Bonvolu ŝangi la monujnomon
-
+ Non-ASCII characters are not allowed in wallet path or account nameNe-askioj karaktroj ne permesitas en la vojnomo aŭ monujnomo
-
+ USE MONEROUZU MONERON
+
+
+ Create wallet
+
+
+
+
+ Success
+
+
+
+
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
+%1
+
+
+
+
+ Error
+ Eraro
+
+
+
+ Abort
+
+ WizardManageWalletUI
- This is the name of your wallet. You can change it to a different name if you’d like:
- Tiu ĉi estas la nomo de via monujo. Vi povas ŝangi ĝin en malsama nomo se vi volus:
+ Tiu ĉi estas la nomo de via monujo. Vi povas ŝangi ĝin en malsama nomo se vi volus:My account name
- Mia monujnomo
+ Mia monujnomo
- Restore height
- Restaŭralteco
+ Restaŭralteco
-
+
+ Wallet name
+
+
+
+
+ Restore from seed
+
+
+
+
+ Restore from keys
+
+
+
+
+ Account address (public)
+
+
+
+
+ View key (private)
+
+
+
+
+ Spend key (private)
+
+
+
+
+ Restore height (optional)
+
+
+
+ Your wallet is stored inVia monujo konservitas en
-
+ Please choose a directoryBonvolu elekti dosierujon
@@ -1223,48 +1912,73 @@
WizardMemoTextInputIt is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- Ĝi gravegas noti tion ĉi ĉar ĝi estas la sola bakupo por restaŭri vian monujon. Vi demanditos konfirmi la semon en la sekva ekrano por certigi ke vi faris bonan kopion.
+ Ĝi gravegas noti tion ĉi ĉar ĝi estas la sola bakupo por restaŭri vian monujon. Vi demanditos konfirmi la semon en la sekva ekrano por certigi ke vi faris bonan kopion.
- It is very important to write it down as this is the only backup you will need for your wallet.
- Ĝi gravegas noti tion ĉi ĉar ĝi estas la sola bakupo por restaŭri vian monujon.
+ Ĝi gravegas noti tion ĉi ĉar ĝi estas la sola bakupo por restaŭri vian monujon.
+
+
+
+ Enter your 25 word mnemonic seed
+
+
+
+
+ This seed is <b>very</b> important to write down and keep secret. It is all you need to backup and restore your wallet.
+ WizardOptions
-
+ Welcome to Monero!Bonvenon al Monero!
-
+ Please select one of the following options:Bonvolu elekti unu el la sekvaj opcioj:
-
+
+ Create a new wallet
+
+
+
+
+ Restore wallet from keys or mnemonic seed
+
+
+
+
+ Open a wallet from file
+
+
+
+
+ Custom daemon address (optional)
+
+
+ This is my first time, I want to create a new account
- Tio ĉi estas mia unua fojo, mi volas krei novan monujon
+ Tio ĉi estas mia unua fojo, mi volas krei novan monujon
- I want to recover my account from my 25 word seed
- Mi volas restaŭri mian monujon el mia 25-a vortsemo.
+ Mi volas restaŭri mian monujon el mia 25-a vortsemo.
- I want to open a wallet from file
- Mi volas malfermi monujon el dosiero
+ Mi volas malfermi monujon el dosiero
- Please setup daemon address below.
- Bonvolu starigi demonadreson sube
+ Bonvolu starigi demonadreson sube
-
+ TestnetTestreto
@@ -1272,55 +1986,82 @@
WizardPassword
- Now that your wallet has been created, please set a password for the wallet
- Nun ke via monujo kreitas, bonvolu agordi pasvorton por via monujo
+ Nun ke via monujo kreitas, bonvolu agordi pasvorton por via monujo
- Now that your wallet has been restored, please set a password for the wallet
- Nun ke via monujo restaŭritas, bonvolu agordi pasvorton por via monujo
+ Nun ke via monujo restaŭritas, bonvolu agordi pasvorton por via monujo
- Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given<br/><br/>
Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.
- Sciu ke tion ĉi pasvorto nerestaŭreblas kaj se vi forgesus ĝin, vi devus restaŭri vian monujon el la mnemoniksemo kiun vi ĵus recivis<br/><br/>
+ Sciu ke tion ĉi pasvorto nerestaŭreblas kaj se vi forgesus ĝin, vi devus restaŭri vian monujon el la mnemoniksemo kiun vi ĵus recivis<br/><br/>
Via pasvorto uzitos por ŝirmi vian monujon kaj konfirmi agojn. Do certiĝu ke via pasvorto sekuras sufiĉe.
- Password
- Pasvorto
+ Pasvorto
- Confirm password
- Konfirmu pasvorton
+ Konfirmu pasvorton
+
+
+
+
+ Give your wallet a password
+
+
+
+
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
+ <b>Enter a strong password</b> (using letters, numbers, and/or symbols):
+
+
+
+
+ WizardPasswordUI
+
+
+ Password
+ Pasvorto
+
+
+
+ Confirm password
+ Konfirmu pasvortonWizardRecoveryWallet
- We're ready to recover your account
- Ni pretas por restaŭri vian monujon
+ Ni pretas por restaŭri vian monujon
- Please enter your 25 word private key
- Bonvolu entajpi vian 25-an vortan privatŝlosilon
+ Bonvolu entajpi vian 25-an vortan privatŝlosilon
+
+
+
+ Restore wallet
+ WizardWelcome
- Welcome
- Bonvenon
+ Bonvenon
-
+
+ Welcome to Monero!
+ Bonvenon al Monero!
+
+
+ Please choose a language and regional format.Bonvolu elekti lingvon kaj regionan formaton
@@ -1328,164 +2069,273 @@
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorEraro
-
+ Couldn't open wallet: Monujo ne malfermeblas: Synchronizing blocks %1 / %2
- Sinkronigado de blokoj %1 %2
+ Sinkronigado de blokoj %1 %2
-
+ Can't create transaction: Wrong daemon version: Nekapablas krei transakciojn: Malĝusta demonversio
-
-
-
-
+
+
+
+ No unmixable outputs to sweepNe nemikseblaj eligoj por balai
-
- Please confirm transaction:
- Bonvolu konfirmi transakcion:
+ Bonvolu konfirmi transakcion:
-
- Amount:
- Kvanto:
+ Kvanto:
- Mixin:
- Enmikso:
+ Enmikso:
- Number of transactions:
- Kvanto da transakcioj:
+ Kvanto da transakcioj:
- Description:
- Priskribo:
+ Priskribo:
-
+ Amount is wrong: expected number from %1 to %2Kvanto malĝustas: antaŭvidita nombro de %1 al %2
-
+ Money sent successfully: %1 transaction(s) Mono senditas sukcese: %1 transakcio(j)
-
+ Payment checkPagkontrolo
-
+ This address received %1 monero, but the transaction is not yet minedTio ĉi adreso ricevis %1 moneron; sed la transakcio ankoraŭ ne minatas
- This address received %1 monero, with %2 confirmations
- Tio ĉi adreso ricevis %1 moneron, kun %2 da konfirmoj
+ Tio ĉi adreso ricevis %1 moneron, kun %2 da konfirmoj
-
+ This address received nothingTio ĉi adreso ricevis nenion
-
-
+
+ Can't create transaction: Nekapablas krei transakcion
-
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Unlocked balance (~%1 min)
+
+
+
+
+ Unlocked balance
+ Disponebla saldo
+
+
+ Waiting for daemon to start...Atendi por la komencado de la demono
-
+ Waiting for daemon to stop...Atendi por haltado de la demono
-
-
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+
+ ConfirmationKonfirmo
-
+
+
+ Please confirm transaction:
+
+
+
+
+
+
+Address:
+
+
+
+
+
+Payment ID:
+
+
+
+
+
+
+
+Amount:
+
+
+
+
+
+
+Fee:
+
+
+
+
+
+
+Ringsize:
+
+
+
+
+
+Number of transactions:
+
+
+
+
+
+
+Description:
+
+
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+ Haltigi demonon
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+ Address:
- Adreso:
+ Adreso:
- Payment ID:
- Paga-ID:
+ Paga-ID:
- Amount:
- Kvanto:
-
-
-
- Fee:
- Kosto:
+ Kosto:
-
+ insufficient funds. Unlocked balance: %1Nesufiĉa da mono. Disponebla saldo: %1
-
+ Couldn't send the money: Mono ne sendeblas
-
+ InformationInformo
-
+
+ Transaction saved to file: %1
+
+
+
+
+ This address received %1 monero, with %2 confirmation(s).
+
+
+
+
+ Balance (syncing)
+
+
+
+
+ Balance
+ Saldo
+
+
+ Please wait...Bonvolu atendi...
+ Program setup wizardProgramagordilo
-
+
+ Monero
+
+
+
+ send to the same destinationSendu al la saman destinon
diff --git a/translations/monero-core_es.ts b/translations/monero-core_es.ts
index ab22b995..93775e0b 100644
--- a/translations/monero-core_es.ts
+++ b/translations/monero-core_es.ts
@@ -48,6 +48,11 @@
Description <font size='2'>(Optional)</font>
+
+
+ Add
+
+ Error
@@ -73,11 +78,6 @@
Give this entry a name or description
-
-
- ADD
-
- AddressBookTable
@@ -131,28 +131,18 @@
DaemonManagerDialog
-
- Daemon doesn't appear to be running
+
+ Starting Monero daemon in %1 seconds
-
- Start daemon
+
+ Start daemon (%1)
-
- Cancel
-
-
-
-
- Daemon startup flags
-
-
-
-
- (optional)
+
+ Use custom settings
@@ -241,7 +231,7 @@
- FILTER
+ Filter
@@ -455,105 +445,115 @@
-
- Unlocked Balance:
+
+ Unlocked BalanceMining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -561,27 +561,32 @@
NetworkStatusItem
-
- Connected
+
+ Synchronizing
- Wrong version
-
-
-
-
- Disconnected
+ Connected
+ Wrong version
+
+
+
+
+ Disconnected
+
+
+
+ Invalid connection status
-
+ Network status
@@ -599,12 +604,12 @@
-
+ Cancel
-
+ Ok
@@ -612,30 +617,35 @@
PrivacyLevelSmall
-
- LOW
+
+ Low
-
- MEDIUM
+
+ Medium
-
- HIGH
+
+ HighProgressBar
-
- Synchronizing blocks %1/%2
+
+ Establishing connection...
-
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocks
@@ -702,6 +712,11 @@
ReadOnly wallet address displayed here
+
+
+ 16 hexadecimal characters
+
+ Integrated address
@@ -747,11 +762,6 @@
Payment ID
-
-
- 16 or 64 hexadecimal characters
-
- Generate
@@ -803,144 +813,142 @@
Settings
-
-
- Click button to show seed
-
-
-
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Show seed
-
+ Manage daemon
-
+ Start daemon
-
+ Stop daemon
-
- Show log
+
+ Show status
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+ Daemon address
-
+ Hostname / IP
-
+ Port
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+
+
+
+ Save
-
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon log
-
+
+ Wallet mnemonic seed
+
+
+
+ Error
-
+ Wrong password
-
+ Manage wallet
-
+ Close wallet
@@ -986,7 +994,24 @@
- SIGN
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
@@ -995,12 +1020,6 @@
Or file:
-
-
-
- SELECT
-
- Filename with message to sign
@@ -1025,9 +1044,8 @@
-
-
- VERIFY
+
+ Please choose a file to verify
@@ -1044,12 +1062,12 @@
StandardDialog
-
+ Ok
-
+ Cancel
@@ -1058,232 +1076,213 @@
TickDelegate
- NORMAL
+ Normal
- MEDIUM
+ Medium
- HIGH
+ HighTransfer
-
+ OpenAlias error
-
- Privacy level (ring size %1)
-
-
-
-
+ Amount
-
+ Transaction priority
-
- ALL
-
-
-
-
- LOW (x1 fee)
-
-
-
-
- MEDIUM (x20 fee)
-
-
-
-
- HIGH (x166 fee)
-
-
-
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
-
- QRCODE
-
-
-
-
- RESOLVE
-
-
-
-
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
-
+
+ Send
+
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ Error
-
+ Error:
-
-
+
+ Information
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount:
-
+
Fee:
-
+
-Ring size:
+Ringsize:
-
+ Confirmation
-
+ Can't submit transaction:
-
+ Money sent successfully
-
+ Wallet is not connected to daemon.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon
-
+ Waiting on daemon synchronization to finish
@@ -1293,35 +1292,65 @@ Please upgrade or connect to another daemon
-
+ Transaction cost
-
+ Payment ID <font size='2'>( Optional )</font>
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+ 16 or 64 hexadecimal characters
-
-
- SEND
-
-
-
-
- Advanced
-
-
-
-
- SWEEP UNMIXABLE
-
- TxKey
@@ -1376,13 +1405,13 @@ Please upgrade or connect to another daemon
-
- Transaction key
+
+ Check
-
- CHECK
+
+ Transaction key
@@ -1427,7 +1456,7 @@ Please upgrade or connect to another daemon
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1439,11 +1468,6 @@ Please upgrade or connect to another daemon
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1481,59 +1505,64 @@ Please upgrade or connect to another daemon
WizardFinish
-
-
-
+
+
+ Enabled
-
-
-
+
+
+ Disabled
-
+ Language
-
+ Wallet name
-
+ Backup seed
-
+ Wallet path
-
+ Daemon address
-
+ Testnet
-
+ Restore height
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
@@ -1543,43 +1572,43 @@ Please upgrade or connect to another daemon
WizardMain
-
+ A wallet with same name already exists. Please change wallet name
-
+ Non-ASCII characters are not allowed in wallet path or account name
-
+ USE MONERO
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ Error
-
+ Abort
@@ -1587,47 +1616,47 @@ Please upgrade or connect to another daemon
WizardManageWalletUI
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored in
-
+ Please choose a directory
@@ -1648,27 +1677,27 @@ Please upgrade or connect to another daemon
WizardOptions
-
+ Welcome to Monero!
-
+ Please select one of the following options:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1678,7 +1707,7 @@ Please upgrade or connect to another daemon
-
+ Testnet
@@ -1686,13 +1715,13 @@ Please upgrade or connect to another daemon
WizardPassword
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1701,7 +1730,7 @@ Please upgrade or connect to another daemon
WizardPasswordUI
-
+ Password
@@ -1713,26 +1742,21 @@ Please upgrade or connect to another daemon
WizardRecoveryWallet
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
-
- Welcome
+
+ Welcome to Monero!
-
+ Please choose a language and regional format.
@@ -1740,200 +1764,235 @@ Please upgrade or connect to another daemon
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Error
-
+ Couldn't open wallet:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balance
-
+ Waiting for daemon to start...
-
+ Waiting for daemon to stop...
-
+ Can't create transaction: Wrong daemon version:
-
-
+
+ Can't create transaction:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ Confirmation
-
-
+
+ Please confirm transaction:
-
+
Address:
-
+
Payment ID:
-
-
+
+
Amount:
-
-
+
+
Fee:
-
-
-
-Ring size:
-
-
-
-
+ This address received %1 monero, with %2 confirmation(s).
-
+
Number of transactions:
-
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+
+
+
+Ringsize:
+
+
+
+
Description:
-
+ Amount is wrong: expected number from %1 to %2
-
+ insufficient funds. Unlocked balance: %1
-
+ Couldn't send the money:
-
+ Information
-
+ Money sent successfully: %1 transaction(s)
-
+ Transaction saved to file: %1
-
+ Payment check
-
+ This address received %1 monero, but the transaction is not yet mined
-
+ This address received nothing
-
+ Balance (syncing)
-
+ Balance
-
+ Please wait...
-
+ Program setup wizard
-
+ Monero
-
+ send to the same destination
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
diff --git a/translations/monero-core_fi.ts b/translations/monero-core_fi.ts
index d5a6b86f..b9e114cf 100644
--- a/translations/monero-core_fi.ts
+++ b/translations/monero-core_fi.ts
@@ -4,55 +4,95 @@
AddressBook
-
+ Add new entryLisää uusi osoite
-
-
+ AddressOsoite
-
+ <b>Tip tekst test</b>
-
+
+ QRCODE
+
+
+
+
+ 4...
+
+
+
+ Payment ID <font size='2'>(Optional)</font>Maksutunniste <font size='2'>(Valinnainen)</font>
-
+ <b>Payment ID</b><br/><br/>A unique user name used in<br/>the address book. It is not a<br/>transfer of information sent<br/>during the transfer<b>Maksutunniste</b><br/><br/>Uniikki tunniste jota <br/>käytetään osoitekirjassa. Tunnistetta ei lähetetä<br/>siirron mukana
-
- Description <font size='2'>(Local database)</font>
- Kuvaus <font size='2'>(Paikallinen tietokanta)</font>
+
+ Paste 64 hexadecimal characters
+
-
+
+ Description <font size='2'>(Optional)</font>
+
+
+
+
+ Give this entry a name or description
+
+
+
+
+ Add
+
+
+
+
+ Error
+ Virhe
+
+
+
+ Invalid address
+
+
+
+
+ Can't create entry
+
+
+
+ Description <font size='2'>(Local database)</font>
+ Kuvaus <font size='2'>(Paikallinen tietokanta)</font>
+
+
+ <b>Tip test test</b><br/><br/>test line 2
- ADD
- LISÄÄ
+ LISÄÄ
- Payment ID
- Maksutunniste
+ Maksutunniste
- Description
- Lisätiedot
+ Lisätiedot
@@ -92,16 +132,45 @@
- DaemonProgress
+ DaemonConsole
-
- Synchronizing blocks %1/%2
- Synkronisoidaan lohkoja %1/%2
+
+ Close
+
+
+
+
+ command + enter (e.g help)
+
+
+
+
+ DaemonManagerDialog
+
+
+ Starting Monero daemon in %1 seconds
+
+
+
+
+ Start daemon (%1)
+
+
+
+
+ Use custom settings
+
+
+
+
+ DaemonProgress
+
+ Synchronizing blocks %1/%2
+ Synkronisoidaan lohkoja %1/%2
- Synchronizing blocks
- Synkronisoidaan lohkoja
+ Synkronisoidaan lohkoja
@@ -163,58 +232,64 @@
<b>Valittujen maksujen summa</b>
-
+
+ Type for incremental search...
+
+
+
+
+ Filter
+
+
+ Incremental search
- Etsi
+ Etsi
- Search transfers for a given string
- Etsi tiettyä merkkijonoa rahansiirroista
+ Etsi tiettyä merkkijonoa rahansiirroista
- Type search string
- Kirjoita merkkijono
+ Kirjoita merkkijono
-
+ Date fromPäiväys
-
-
-
-
-
+
+
+
+
+ <b>Tip tekst test</b>
-
-
+
+ ToMihin
- FILTER
- SUODATIN
+ SUODATIN
-
+ Advanced filtering?Lisäsuodatus
-
+ Type of transactionRahansiirron tyyppi
-
+ Amount fromMäärä
@@ -222,53 +297,73 @@
HistoryTable
-
+ Tx ID:Siirron tunniste (Tx ID):
-
-
+
+ Payment ID:Maksutunniste:
-
+ Tx key:Siirron avain:
-
+ Tx note:Siirron kommentti:
-
+
+ Destinations:
+
+
+
+ No more resultsEi enempää tuloksia
-
+ DetailsLisätietoja
-
+ BlockHeight:Lohkoketjun pituus:
-
+
+ (%1/10 confirmations)
+
+
+
+
+ UNCONFIRMED
+
+
+
+
+ PENDING
+
+
+
+ DatePäiväys
-
+ AmountMäärä
-
+ FeeSiirtopalkkio
@@ -276,78 +371,116 @@
LeftPanel
-
+ BalanceSaldo
-
+ Test tip 1<br/><br/>line 2
-
+ Unlocked balanceLukitsematon saldo
-
+ Test tip 2<br/><br/>line 2
-
+ SendLähetä
-
- T
-
-
-
-
+ ReceiveVastaannota
-
+ R
- Verify payment
- Varmenna siirto
+ Varmenna siirto
-
+ K
-
+ HistoryHistoria
-
+
+ Address book
+
+
+
+
+ B
+
+
+
+ H
-
+
+ Advanced
+
+
+
+
+ D
+
+
+
+
+ Mining
+
+
+
+
+ M
+
+
+
+
+ Check payment
+
+
+
+ Sign/verifyAllekirjoita/varmenna
-
-
+
+ E
+
+
+
+ S
-
+
+ I
+
+
+
+ SettingsAsetukset
@@ -355,40 +488,161 @@
MiddlePanel
- Balance:
- Saldo:
+ Saldo:
- Unlocked Balance:
- Lukitsematon saldo:
+ Lukitsematon saldo:
+
+
+
+ Balance
+ Saldo
+
+
+
+ Unlocked Balance
+
+
+
+
+ Mining
+
+
+ Solo mining
+
+
+
+
+ (only available for local daemons)
+
+
+
+
+ Mining helps the Monero network build resilience.<br>
+
+
+
+
+ The more mining is done, the harder it is to attack the network.<br>
+
+
+
+
+ Mining also gives you a small chance to earn some Monero.<br>
+
+
+
+
+ Your computer will search for Monero block solutions.<br>
+
+
+
+
+ If you find a block, you will get the associated reward.<br>
+
+
+
+
+ CPU threads
+
+
+
+
+ (optional)
+
+
+
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+
+ Manage miner
+
+
+
+
+ Start mining
+
+
+
+
+ Error starting mining
+
+
+
+
+ Couldn't start mining.<br>
+
+
+
+
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
+
+
+
+
+ Stop mining
+
+
+
+
+ Status: not mining
+
+
+
+
+ Mining at %1 H/s
+
+
+
+
+ Not mining
+
+
+
+
+ Status:
+ NetworkStatusItem
-
+
+ Synchronizing
+
+
+
+ ConnectedYhdistetty
-
+ Wrong versionVäärä versio
-
+ DisconnectedEi yhdistetty
-
+ Invalid connection statusVirheellinen yhteys
-
+ Network statusVerkon tila
@@ -396,17 +650,22 @@
PasswordDialog
-
+ Please enter wallet passwordSyötä lompakon salasana
-
+
+ Please enter wallet password for:<br>
+
+
+
+ CancelPeruuta
-
+ OkOk
@@ -414,66 +673,175 @@
PrivacyLevelSmall
- LOW
- MATALA
+ MATALA
- MEDIUM
- KESKIVERTO
+ KESKIVERTO
- HIGH
- KORKEA
+ KORKEA
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+
+
+
+
+ ProgressBar
+
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+
+ Synchronizing blocks
+ Synkronisoidaan lohkojaReceive
-
+ Invalid payment IDVirheellinen maksutunniste
+ WARNING: no connection to daemon
+
+
+
+
+ in the txpool: %1
+
+
+
+
+ %2 confirmations: %3 (%1)
+
+
+
+
+ 1 confirmation: %2 (%1)
+
+
+
+
+ No transaction found yet...
+
+
+
+
+ Transaction found
+
+
+
+
+ %1 transactions found
+
+
+
+
+ with more money (%1)
+
+
+
+
+ with not enough money (%1)
+
+
+
+ AddressOsoite
-
+ ReadOnly wallet address displayed hereReadOnly lompakon osoite
-
+
+ 16 hexadecimal characters
+
+
+
+ Integrated addressIntegroitu osoite
-
+ ReadOnly wallet integrated address displayed hereReadOnly lompakon integroitu osoite
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Tracking <font size='2'> (</font><a href='#'>help</a><font size='2'>)</font>
+
+
+
+
+ Tracking payments
+
+
+
+
+ <p><font size='+2'>This is a simple sales tracker:</font></p><p>Click Generate to create a random payment id for a new customer</p> <p>Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).</p><p>This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.</p>It's up to you whether to accept unconfirmed transactions or not. It is likely they'll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).</p>
+
+
+
+
+ Save QrCode
+
+
+
+
+ Failed to save QrCode to
+
+
+
+
+ Save As
+
+
+
+ Payment IDMaksutunniste
- 16 or 64 hexadecimal characters
- 16 tai 64 heksamerkkiä
+ 16 tai 64 heksamerkkiä
-
+ GenerateLuo
-
-
+
+ AmountMäärä
@@ -517,58 +885,158 @@
Settings
-
- Click button to show seed
- Paina nappia nähdäksesi lompakon avainlause (seed)
+ Paina nappia nähdäksesi lompakon avainlause (seed)
- Mnemonic seed:
- Muistintuki (seed):
+ Muistintuki (seed):
- It is very important to write it down as this is the only backup you will need for your wallet.
- On tärkeää, että kirjoitat tämän talteen. Tarvitset vain sen palauttaaksesi lompakon.
+ On tärkeää, että kirjoitat tämän talteen. Tarvitset vain sen palauttaaksesi lompakon.
-
+
+ Create view only wallet
+
+
+
+ Show seedNäytä muistintuki (seed)
-
+
+ Manage daemon
+
+
+
+
+ Start daemon
+
+
+
+
+ Stop daemon
+
+
+
+
+ Show status
+
+
+
+
+ Daemon startup flags
+
+
+
+
+ (optional)
+
+
+
+ Daemon addressPalveluprosessin osoite
-
+ Hostname / IPOsoite / IP
-
+ PortPortti
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ Salasana
+
+
+ SaveTallenna
-
+
+ Layout settings
+
+
+
+
+ Custom decorations
+
+
+
+
+ Log level
+
+
+
+
+ (e.g. *:WARNING,net.p2p:DEBUG)
+
+
+
+
+ Version
+
+
+
+
+ GUI version:
+
+
+
+
+ Embedded Monero version:
+
+
+
+
+ Daemon log
+
+
+
+
+ Wallet mnemonic seed
+
+
+
+
+ Error
+ Virhe
+
+
+
+ Wrong password
+
+
+
+ Manage walletHallitse lompakkoa
- Close current wallet and open wizard
- Sulje nykyinen lompakko ja avaa asennusvelho
+ Sulje nykyinen lompakko ja avaa asennusvelho
-
+ Close walletSulje lompakko
@@ -614,8 +1082,39 @@
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
+
+
+
+
+ Please choose a file to verify
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+ SIGN
- ALLEKIRJOITA
+ ALLEKIRJOITA
@@ -624,10 +1123,8 @@
Tai tiedosto:
-
- SELECT
- VALITSE
+ VALITSE
@@ -653,10 +1150,8 @@
Viesti jonka allekirjoituksen haluat vahvistaa
-
- VERIFY
- VAHVISTA
+ VAHVISTA
@@ -664,20 +1159,19 @@
Tiedostonimi viestillä jonka haluat vahvistaa
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Allekirjoita osoitteella <font size='2'> ( Kirjoita tai valitse </font> <a href='Address'>Osoitekirjasta</a>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Allekirjoita osoitteella <font size='2'> ( Kirjoita tai valitse </font> <a href='Address'>Osoitekirjasta</a>StandardDialog
-
+ OkOk
-
+ CancelPeruuta
@@ -685,126 +1179,372 @@
TickDelegate
- LOW
- MATALA
+ MATALA
+
+
+ MEDIUM
+ KESKIVERTO
+
+
+ HIGH
+ KORKEA
+
+
+
+ Normal
+
- MEDIUM
- KESKIVERTO
+ Medium
+
- HIGH
- KORKEA
+ High
+ Transfer
-
+
+ OpenAlias error
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+ AmountMäärä
-
+ Transaction priorityRahansiirron prioriteetti
+
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ No valid address found at this OpenAlias address
+
+
+
+
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
+
+
+
+
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
+
+
+
+
+
+ Internal error
+
+
+
+
+ No address found
+
+
+
+
+ Description <font size='2'>( Optional )</font>
+
+
+
+
+ Saved to local wallet history
+
+
+
+
+ Send
+ Lähetä
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+
+ create tx file
+
+
+
+
+ sign tx file
+
+
+
+
+ submit tx file
+
+
+
+
+ Rescan spent
+
+
+
+
+
+
+ Error
+ Virhe
+
+
+
+ Error:
+
+
+
+
+
+ Information
+ Tietoa
+
+
+
+ Sucessfully rescanned spent outputs
+
+
+
+
+
+ Please choose a file
+
+
+
+
+ Can't load unsigned transaction:
+
+
+
+
+
+Number of transactions:
+
+Rahansiirtojen lukumäärä:
+
+
+
+
+Transaction #%1
+
+
+
+
+
+Recipient:
+
+
+
+
+
+payment ID:
+
+
+
+
+
+Amount:
+
+
+
+
+
+Fee:
+
+Siirtopalkkio:
+
+
+
+
+Ringsize:
+
+
+
+
+ Confirmation
+ Hyväksyntä
+
+
+
+ Can't submit transaction:
+
+
+
+
+ Money sent successfully
+
+
+
+
+
+ Wallet is not connected to daemon.
+
+
+
+
+ Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon
+
+
+
+
+ Waiting on daemon synchronization to finish
+
+
- or ALL
- tai KAIKKI
+ tai KAIKKI
- LOW
- MATALA
+ MATALA
- MEDIUM
- KESKIVERTO
+ KESKIVERTO
- HIGH
- KORKEA
+ KORKEA
- Privacy level
- Yksityisyyden taso
+ Yksityisyyden taso
-
+ Transaction costRahansiirron hinta
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
-
-
-
-
+ Payment ID <font size='2'>( Optional )</font>Maksutunniste <font size='2'>( Valinnainen )</font>
-
+ 16 or 64 hexadecimal characters16 tai 64 heksamerkkiä
- Description <font size='2'>( An optional description that will be saved to the local address book if entered )</font>
- Kuvaus <font size='2'>( Vaihtoehtoinen kuvaus joka lisätään kyseiseen osoitteeseen osoitekirjassa )</font>
+ Kuvaus <font size='2'>( Vaihtoehtoinen kuvaus joka lisätään kyseiseen osoitteeseen osoitekirjassa )</font>
- SEND
- LÄHETÄ
-
-
-
- SWEEP UNMIXABLE
-
+ LÄHETÄTxKey
- You can verify that a third party made a payment by supplying:
- Voit tarkistaa toisen osapuolen suorittaman maksun syöttämällä seuraavat tiedot:
+ Voit tarkistaa toisen osapuolen suorittaman maksun syöttämällä seuraavat tiedot:
+
+
+ - the recipient address,
+ - vastaannottajan osoite,
+
+
+ - the transaction ID,
+ - rahansiirron tunniste,
+
+
+ - the tx secret key supplied by the sender
+ ?
+ - rahansiirron salainen avain lähettäjältä
+
+
+ If a payment was made up of several transactions, each transaction must be checked, and the results added
+ Jos maksu koostui useista rahansiirroista, täytyy jokainen tarkistaa erikseen ja laskea yhteen
+
+
+
+ Verify that a third party made a payment by supplying:
+
- - the recipient address,
- - vastaannottajan osoite,
+ - the recipient address
+
- - the transaction ID,
- - rahansiirron tunniste,
+ - the transaction ID
+
- - the tx secret key supplied by the sender
- ?
- - rahansiirron salainen avain lähettäjältä
+ - the secret transaction key supplied by the sender
+
- If a payment was made up of several transactions, each transaction must be checked, and the results added
- Jos maksu koostui useista rahansiirroista, täytyy jokainen tarkistaa erikseen ja laskea yhteen
+ If a payment had several transactions then each must be checked and the results combined.
+
@@ -823,8 +1563,22 @@
+ Paste tx ID
+
+
+
+
+ Paste tx key
+
+
+
+
+ Check
+
+
+ Transaction ID here
- Rahansiirron tunniste tähän
+ Rahansiirron tunniste tähän
@@ -832,14 +1586,12 @@
Rahansiirron avain
- Transaction key here
- Rahansiirron avain tähän
+ Rahansiirron avain tähän
- CHECK
- TARKISTA
+ TARKISTA
@@ -855,42 +1607,57 @@
- It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- On tärkeää, että kirjoitat kyseisen muistintuen (seed) talteen. Tarvitset vain sen palauttaaksesi lompakon. Sinulta kysytään sitä seuraavassa ruudussa sen varmistamiseksi, että kirjoitit sanat talteen oikein.
+ On tärkeää, että kirjoitat kyseisen muistintuen (seed) talteen. Tarvitset vain sen palauttaaksesi lompakon. Sinulta kysytään sitä seuraavassa ruudussa sen varmistamiseksi, että kirjoitit sanat talteen oikein.
-
+
+ It is very important to write it down as this is the only backup you will need for your wallet.
+ On tärkeää, että kirjoitat tämän talteen. Tarvitset vain sen palauttaaksesi lompakon.
+
+
+ Enable disk conservation mode?Haluatko laittaa levynsäilytystilan päälle?
-
+ Disk conservation mode uses substantially less disk-space, but the same amount of bandwidth as a regular Monero instance. However, storing the full blockchain is beneficial to the security of the Monero network. If you are on a device with limited disk space, then this option is appropriate for you.Levynsäilytystilaa käytettäessä lompakko käyttää vähemmän tilaa levyllä, mutta saman verran kaistanleveyttä kuin normaalissa tilassa. On suositeltavaa säilyttää koko lohkoketjua Moneron verkon turvaallisudeksi. Jos olet laitteella, jolla ei olisi tarpeeksi tilaa koko lohkoketjulle, tämä vaihtoehto on sopiva.
-
+ Allow background mining?Sallitaanko louhiminen taustalla?
-
+ Mining secures the Monero network, and also pays a small reward for the work done. This option will let Monero mine when your computer is on mains power and is idle. It will stop mining when you continue working.Louhiminen turvaa Moneron verkon ja maksaa pienen palkkion tehdystä työstä. Tällä vaihtoehdolla annat Monero-lompakon suorittaa louhintaa tietokoneen ollessa käyttämättä ja kytkettynä virtalähteeseen. Louhinta lopetetaan automaattisesti jatkaessasi muita toimintoja.
+
+ WizardCreateViewOnlyWallet
+
+
+ Create view only wallet
+
+
+WizardCreateWallet
- A new wallet has been created for you
- Uusi lompakko on luotu
+ Uusi lompakko on luotu
- This is the 25 word mnemonic for your wallet
- Tämä on 25:n sanan pituinen muistintuki lompakkoosi
+ Tämä on 25:n sanan pituinen muistintuki lompakkoosi
+
+
+
+ Create a new wallet
+
@@ -929,97 +1696,182 @@
WizardFinish
-
-
-
+
+
+ EnabledKäytössä
-
-
-
+
+
+ DisabledPoissa käytöstä
-
+ LanguageKieli
- Account name
- Käyttäjänimi
+ Käyttäjänimi
- Seed
- Muistintuki (Seed)
+ Muistintuki (Seed)
-
+
+ Wallet name
+
+
+
+
+ Backup seed
+
+
+
+ Wallet pathLompakon sijainti
-
+ Daemon addressPalveluprosessin osoite
-
+ TestnetTestnet
-
+ Restore heightPalauta tietystä lohkoketjun pituudesta
-
- An overview of your Monero configuration is below:
- Alapuolella on katsaus valitsemiisi lompakon asetuksiin:
+
+ New wallet details:
+
+
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
+
+
+
+ An overview of your Monero configuration is below:
+ Alapuolella on katsaus valitsemiisi lompakon asetuksiin:
+
+ You’re all setup!
- Kaikki on valmista!
+ Kaikki on valmista!WizardMain
-
+ A wallet with same name already exists. Please change wallet nameLompakko kyseisellä nimellä on jo olemassa. Ole hyvä ja vaihda lompakon nimi
-
+
+ Non-ASCII characters are not allowed in wallet path or account name
+
+
+
+ USE MONEROKÄYTÄ MONEROA
+
+
+ Create wallet
+
+
+
+
+ Success
+
+
+
+
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
+%1
+
+
+
+
+ Error
+ Virhe
+
+
+
+ Abort
+
+ WizardManageWalletUI
- This is the name of your wallet. You can change it to a different name if you’d like:
- Tämä on lompakkosi nimi. Voit vaihtaa sen uuteen nimeen jos haluat:
+ Tämä on lompakkosi nimi. Voit vaihtaa sen uuteen nimeen jos haluat:
- Restore height
- Palauta tietystä lohkoketjun pituudesta
+ Palauta tietystä lohkoketjun pituudesta
-
+
+ Wallet name
+
+
+
+
+ Restore from seed
+
+
+
+
+ Restore from keys
+
+
+
+
+ Account address (public)
+
+
+
+
+ View key (private)
+
+
+
+
+ Spend key (private)
+
+
+
+
+ Restore height (optional)
+
+
+
+ Your wallet is stored inLompakkosi on säilytetty kyseisessä kansiossa
-
+ Please choose a directoryValitse tiedostopolku
@@ -1027,45 +1879,70 @@
WizardMemoTextInput
- It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- On tärkeää, että kirjoitat kyseisen muistintuen (seed) talteen. Tarvitset vain sen palauttaaksesi lompakon. Sinulta kysytään sitä seuraavassa ruudussa sen varmistamiseksi, että kirjoitit sanat talteen oikein.
+ On tärkeää, että kirjoitat kyseisen muistintuen (seed) talteen. Tarvitset vain sen palauttaaksesi lompakon. Sinulta kysytään sitä seuraavassa ruudussa sen varmistamiseksi, että kirjoitit sanat talteen oikein.
+
+
+
+ Enter your 25 word mnemonic seed
+
+
+
+
+ This seed is <b>very</b> important to write down and keep secret. It is all you need to backup and restore your wallet.
+ WizardOptions
-
+ Welcome to Monero!Tervetuloa käyttämään Moneroa!
-
+ Please select one of the following options:Valitse jokin seuraavista vaihtoehdoista:
-
+
+ Create a new wallet
+
+
+
+
+ Restore wallet from keys or mnemonic seed
+
+
+
+
+ Open a wallet from file
+
+
+
+
+ Custom daemon address (optional)
+
+
+ This is my first time, I want to create a new account
- Tämä on ensimmäinen kertani, haluan luoda uuden käyttäjän
+ Tämä on ensimmäinen kertani, haluan luoda uuden käyttäjän
- I want to recover my account from my 25 word seed
- Haluan palauttaa lompakon 25:n sanan muistintuella (seed)
+ Haluan palauttaa lompakon 25:n sanan muistintuella (seed)
- I want to open a wallet from file
- Haluan avata lompakon tiedostosta
+ Haluan avata lompakon tiedostosta
- Please setup daemon address below.
- Valitse palveluprosessin osoite alapuolella.
+ Valitse palveluprosessin osoite alapuolella.
-
+ Testnet
@@ -1073,55 +1950,82 @@
WizardPassword
- Now that your wallet has been created, please set a password for the wallet
- Nyt kun lompakkosi on luotu, aseta sille salasana
+ Nyt kun lompakkosi on luotu, aseta sille salasana
- Now that your wallet has been restored, please set a password for the wallet
- Nyt kun lompakkosi on palautettu, aseta sille salasana
+ Nyt kun lompakkosi on palautettu, aseta sille salasana
- Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given<br/><br/>
Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.
- Huomioi, että tätä salasanaa ei voida palauttaa sen kadottaessa. Jos unohdat salanasasi, joudut palauttamaan lompakon muistintuella (seed), joka sinulle on juuri annettu<br/><br/>
+ Huomioi, että tätä salasanaa ei voida palauttaa sen kadottaessa. Jos unohdat salanasasi, joudut palauttamaan lompakon muistintuella (seed), joka sinulle on juuri annettu<br/><br/>
Salasanallasi turvataan lompakko ja vahvistetaan toimia, pidä huolta siitä että salasanasi on tarpeeksi vahva.
- Password
- Salasana
+ Salasana
- Confirm password
- Vahvista salasana
+ Vahvista salasana
+
+
+
+
+ Give your wallet a password
+
+
+
+
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
+ <b>Enter a strong password</b> (using letters, numbers, and/or symbols):
+
+
+
+
+ WizardPasswordUI
+
+
+ Password
+ Salasana
+
+
+
+ Confirm password
+ Vahvista salasanaWizardRecoveryWallet
- We're ready to recover your account
- Valmiina palauttamaan käyttäjä
+ Valmiina palauttamaan käyttäjä
- Please enter your 25 word private key
- Kirjoita 25:n sanan muistintuki (seed)
+ Kirjoita 25:n sanan muistintuki (seed)
+
+
+
+ Restore wallet
+ WizardWelcome
- Welcome
- Tervetuloa
+ Tervetuloa
-
+
+ Welcome to Monero!
+ Tervetuloa käyttämään Moneroa!
+
+
+ Please choose a language and regional format.Valitse kieli ja alueellinen muoto.
@@ -1129,77 +2033,111 @@
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorVirhe
-
+ Couldn't open wallet: Lompakkoa ei voitu avata:
- Synchronizing blocks %1 / %2
- Synkronisoidaan lohkoja %1 / %2
+ Synkronisoidaan lohkoja %1 / %2
-
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Unlocked balance (~%1 min)
+
+
+
+
+ Unlocked balance
+ Lukitsematon saldo
+
+
+
+ Waiting for daemon to start...
+
+
+
+
+ Waiting for daemon to stop...
+
+
+
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+ Can't create transaction: Wrong daemon version: Rahansiirtoa ei onnistuttu tekemään: Palveluprosessin versio on väärä:
-
-
+
+ Can't create transaction: Rahansiirtoa ei onnistuttu tekemään:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ ConfirmationHyväksyntä
-
-
+
+ Please confirm transaction:
Vahvista rahansiirto:
-
+
Address:
Osoite:
-
+
Payment ID:
Maksutunniste:
-
-
+
+
Amount:
@@ -1208,29 +2146,54 @@ Amount:
Määrä:
-
-
+
+
Fee:
Siirtopalkkio:
-
+
-Mixin:
-
+Ringsize:
+
-
+
+ This address received %1 monero, with %2 confirmation(s).
+
+
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
+
Number of transactions:
Rahansiirtojen lukumäärä:
-
+
Description:
@@ -1239,67 +2202,81 @@ Description:
Kuvaus:
-
+ Amount is wrong: expected number from %1 to %2Määrä on virheellinen: odotettiin numeroa %1 :n ja %2 :n välillä
-
+ insufficient funds. Unlocked balance: %1riittämättömät varat. Lukitsematon saldo: %1
-
+ Couldn't send the money: Rahansiirtoa ei voitu suorittaa:
-
+ InformationTietoa
-
+ Money sent successfully: %1 transaction(s) Rahat lähetettiin onnistuneesti: %1 rahansiirto(a)
-
+
+ Transaction saved to file: %1
+
+
+
+ Payment checkMaksun tarkistus
-
+ This address received %1 monero, but the transaction is not yet minedTähän osoitteeseen on saapunut %1 Moneroa, mutta rahansiirtoa ei ole vielä lisätty lohkoon
- This address received %1 monero, with %2 confirmations
- Tähän osoitteeseen on saapunut %1 Moneroa, vahvistuksien määrä: %2
+ Tähän osoitteeseen on saapunut %1 Moneroa, vahvistuksien määrä: %2
-
+ This address received nothingTähän osoitteeseen ei ole saapunut mitään
-
+
+ Balance (syncing)
+
+
+
+
+ Balance
+ Saldo
+
+
+ Please wait...Odota...
-
+ Program setup wizardSovelluksen asetusvelho
-
+ MoneroMonero
-
+ send to the same destinationlähetä samaan osoitteeseen
diff --git a/translations/monero-core_fr.ts b/translations/monero-core_fr.ts
index 6a62ccfa..1db5da79 100644
--- a/translations/monero-core_fr.ts
+++ b/translations/monero-core_fr.ts
@@ -48,6 +48,11 @@
Description <font size='2'>(Optional)</font>Description <font size='2'>(Facultatif)</font>
+
+
+ Add
+
+ Error
@@ -78,9 +83,8 @@
Donner un nom ou une description pour cette entrée
- ADD
- AJOUTER
+ AJOUTERPayment ID
@@ -143,29 +147,39 @@
DaemonManagerDialog
- Daemon doesn't appear to be running
- Le démon semble ne pas être démarré
+ Le démon semble ne pas être démarré
- Start daemon
- Démarrer démon
+ Démarrer démon
- Cancel
- Annuler
+ Annuler
- Daemon startup flags
- Options de démarrage
+ Options de démarrage
- (optional)
- (facultatif)
+ (facultatif)
+
+
+
+ Starting Monero daemon in %1 seconds
+
+
+
+
+ Start daemon (%1)
+
+
+
+
+ Use custom settings
+
@@ -276,8 +290,12 @@
+ Filter
+
+
+ FILTER
- FILTRER
+ FILTRER
@@ -502,105 +520,119 @@
Solde
-
+
+ Unlocked Balance
+
+
+ Unlocked Balance:
- Solde débloqué :
+ Solde débloqué :Mining
-
+ Solo miningExtraction minière en solo
-
+ (only available for local daemons)(disponible uniquement pour les démons locaux)
-
+ Mining helps the Monero network build resilience.<br>L'extraction minière aide le réseau Monero à augmenter sa robustesse.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>Plus il y en a, plus il est difficile d'attaquer le réseau.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>La mine vous donne aussi une petite chance de gagner des Moneros.<br>
-
+ Your computer will search for Monero block solutions.<br>Votre ordinateur va chercher des solutions de bloc Monero.<br>
-
+ If you find a block, you will get the associated reward.<br>Si vous trouvez un bloc, vous obtiendrez la récompense associée.<br>
-
+ CPU threadsThreads CPU
-
+ (optional)(facultatif)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage minerGérer le mineur
-
+ Start miningDémarrer
-
+ Error starting miningErreur lors du démarrage de l'extraction minière
-
+ Couldn't start mining.<br>Impossible de démarrer l'extraction minière.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>L'extraction minière n'est disponible que pour les démons locaux. Démarrez un démon local pour pouvoir l'utiliser.<br>
-
+ Stop miningArrêter
-
+ Status: not miningStatut : pas d'extraction minière
-
+ Mining at %1 H/sExtraction minière à %1 H/s
-
+ Not miningPas d'extraction minière
-
+ Status: Statut :
@@ -608,27 +640,32 @@
NetworkStatusItem
-
+
+ Synchronizing
+
+
+
+ ConnectedConnecté
-
+ Wrong versionMauvaise version
-
+ DisconnectedDéconnecté
-
+ Invalid connection statusÉtat de connexion invalide
-
+ Network statusÉtat du réseau
@@ -646,12 +683,12 @@
Entrez le mot de passe du portefeuille pour :<br>
-
+ CancelAnnuler
-
+ OkOk
@@ -659,30 +696,51 @@
PrivacyLevelSmall
- LOW
- BAS
+ BAS
- MEDIUM
- MOYEN
+ MOYEN
- HIGH
- HAUT
+ HAUT
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+ ProgressBar
- Synchronizing blocks %1/%2
- Synchronisation des blocs %1/%2
+ Synchronisation des blocs %1/%2
-
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocksSynchronisation des blocs
@@ -749,6 +807,11 @@
ReadOnly wallet address displayed hereAdresse du portefeuille LectureSeule affichée ici
+
+
+ 16 hexadecimal characters
+
+ Integrated address
@@ -795,9 +858,8 @@
ID de paiement
- 16 or 64 hexadecimal characters
- 16 ou 64 caractères hexadécimaux
+ 16 ou 64 caractères hexadécimaux
@@ -850,10 +912,8 @@
Settings
-
- Click button to show seed
- Cliquez sur le bouton pour afficher la graine
+ Cliquez sur le bouton pour afficher la graineMnemonic seed:
@@ -864,133 +924,153 @@
Il est très important de l'écrire sur papier car c'est la seule sauvegarde dont vous aurez besoin pour votre portefeuille.
-
- View only wallets doesn't have a mnemonic seed
- Les portefeuilles en vue seule n'ont pas de graine mnémonique
+ Les portefeuilles en vue seule n'ont pas de graine mnémonique
-
+ Create view only walletCréer portefeuille vue seule
- This is very important to write down and keep secret. It is all you need to restore your wallet.
- Il est très important de l'écrire sur papier et de le garder secret. C'est tout ce dont vous aurez besoin pour restaurer votre portefeuille.
+ Il est très important de l'écrire sur papier et de le garder secret. C'est tout ce dont vous aurez besoin pour restaurer votre portefeuille.
-
+ Show seedMontrer la graine
-
+ Manage daemonGérer le démon
-
+ Start daemonLancer démon
-
+ Stop daemonArrêter démon
- Show log
- Montrer le journal
+ Montrer le journal
- Status
- Statut
+ Statut
-
+
+ Show status
+
+
+
+ Daemon startup flagsOptions de démarrage
-
+ (optional)(facultatif)
-
+ Daemon addressAdresse du démon
-
+ Hostname / IPNom d'hôte / IP
-
+ PortPort
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ Mot de passe
+
+
+ SaveSauvegarder
-
+ Layout settingsRéglages d'agencement
-
+ Custom decorationsDécorations personnalisées
-
+ Log levelNiveau journal
-
+ (e.g. *:WARNING,net.p2p:DEBUG)(e.g. *:WARNING,net.p2p:DEBUG)
-
+ VersionVersion
-
+ GUI version: Version de l'interface graphique :
-
+ Embedded Monero version: Version de Monero incorporée :
-
+ Daemon logJournal du démon
-
+
+ Wallet mnemonic seed
+
+
+
+ ErrorErreur
-
+ Wrong passwordMauvais mot de passe
-
+ Manage walletGérer le portefeuille
@@ -999,7 +1079,7 @@
Fermer le portefeuille courant et ouvrir l'assistant
-
+ Close walletFermer
@@ -1045,8 +1125,34 @@
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
+
+
+
+
+ Please choose a file to verify
+
+
+ SIGN
- SIGNER
+ SIGNER
@@ -1055,10 +1161,8 @@
Ou un fichier :
-
- SELECT
- SÉLECTIONNER
+ SÉLECTIONNER
@@ -1084,10 +1188,8 @@
Message à vérifier
-
- VERIFY
- VÉRIFIER
+ VÉRIFIER
@@ -1107,12 +1209,12 @@
StandardDialog
-
+ OkOk
-
+ CancelAnnuler
@@ -1124,241 +1226,316 @@
BAS
- NORMAL
- NORMAL
+ NORMAL
+
+
+ MEDIUM
+ MOYEN
+
+
+ HIGH
+ HAUT
+
+
+
+ Normal
+
- MEDIUM
- MOYEN
+ Medium
+
- HIGH
- HAUT
+ High
+ Transfer
-
+ OpenAlias errorErreur OpenAlias
- Privacy level (ring size %1)
- Niveau de confidentialité (taille du cercle %1)
+ Niveau de confidentialité (taille du cercle %1)
-
+ AmountMontant
-
+ Transaction priorityPriorité de transaction
- ALL
- TOUT
+ TOUT
- LOW (x1 fee)
- BAS (frais x1)
+ BAS (frais x1)
- MEDIUM (x20 fee)
- MOYEN (frais x20)
+ MOYEN (frais x20)
- HIGH (x166 fee)
- HAUT (frais x166)
+ HAUT (frais x166)
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adresse <font size='2'> ( Collez ou sélectionnez dans le </font> <a href='#'>Carnet d'adresses</a><font size='2'> )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adresse <font size='2'> ( Collez ou sélectionnez dans le </font> <a href='#'>Carnet d'adresses</a><font size='2'> )</font>
- QRCODE
- CODE QR
+ CODE QR
- RESOLVE
- RÉSOUDRE
+ RÉSOUDRE
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+ No valid address found at this OpenAlias addressPas d'adresse valide trouvée à cette adresse OpenAlias
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofedAdresse trouvée, mais les signatures DNSSEC n'ont pas pu être vérifiées, donc cette adresse pourrait avoit été falsifiée
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofedPas d'adresse valide trouvée à cette adresse OpenAlias, mais les signatures DNSSEC n'ont pas pu être vérifiées, donc ceci pourrait être avoir été falsifié
-
-
+
+ Internal errorErreur interne
-
+ No address foundPas d'adresse trouvée
-
+ Description <font size='2'>( Optional )</font>Description <font size='2'>( Facultatif )</font>
-
+ Saved to local wallet historyEnregistré dans l'historique du portefeuille local
-
+
+ Send
+ Envoyer
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx filecréer fichier tx
-
+ sign tx filesigner fichier tx
-
+ submit tx fileSoumettre fichier tx
-
+ Rescan spentScan dépenses
-
-
-
+
+
+ ErrorErreur
-
+ Error: Erreur :
-
-
+
+ InformationInformation
-
+ Sucessfully rescanned spent outputsLes sorties dépensées ont été rescannées avec succès
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction: Impossible de charger une transaction non signée :
-
+
Number of transactions:
Nombre de transactions :
-
+
Transaction #%1
Transaction #%1
-
+
Recipient:
Destinataire :
-
+
payment ID:
identifiant de paiement :
-
+
Amount:
Montant :
-
+
Fee:
Frais :
-
+
+
+Ringsize:
+
+
+
Ring size:
-
+
Taille du cercle :
-
+ ConfirmationConfirmation
-
+ Can't submit transaction: Impossible de soumettre la transaction :
-
+ Money sent successfullyArgent envoyé avec succès
-
+ Wallet is not connected to daemon.Le portefeuille n'est pas connecté au démon.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemonLe démon connecté n'est pas compatible avec l'interface graphique.
Veuillez mettre à jour ou vous connecter à un autre démon
-
+ Waiting on daemon synchronization to finishAttente de la fin de la synchronisation avec le démon
@@ -1388,7 +1565,7 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Niveau de confidentialité
-
+ Transaction costCoût de transaction
@@ -1397,12 +1574,12 @@ Veuillez mettre à jour ou vous connecter à un autre démon
<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adresse <font size='2'> ( Entrez ou sélectionnez dans le </font> <a href='#'>Carnet d'adresses</a><font size='2'> )</font>
-
+ Payment ID <font size='2'>( Optional )</font>ID de paiement <font size='2'>( Facultatif )</font>
-
+ 16 or 64 hexadecimal characters16 ou 64 caractères hexadécimaux
@@ -1411,19 +1588,16 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Description <font size='2'>( Une description facultative qui sera sauvegardée dans le carnet d'adresses local )</font>
- SEND
- ENVOYER
+ ENVOYER
- Advanced
- Avancé
+ Avancé
- SWEEP UNMIXABLE
- NON MÉLANGEABLES
+ NON MÉLANGEABLES
@@ -1498,6 +1672,11 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Paste tx keyColler la clé de transaction
+
+
+ Check
+
+ Transaction ID hereID de transaction ici
@@ -1512,9 +1691,8 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Clé de transaction ici
- CHECK
- VÉRIFIER
+ VÉRIFIER
@@ -1562,7 +1740,7 @@ Veuillez mettre à jour ou vous connecter à un autre démon
WizardCreateViewOnlyWallet
-
+ Create view only walletCréer portefeuille vue seule
@@ -1583,9 +1761,8 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Créer un nouveau portefeuille
- Here is your wallet's 25 word mnemonic seed
- Voici la graine mnémonique de 25 mots pour votre portefeuille
+ Voici la graine mnémonique de 25 mots pour votre portefeuille
@@ -1624,21 +1801,21 @@ Veuillez mettre à jour ou vous connecter à un autre démon
WizardFinish
-
-
-
+
+
+ EnabledActivé
-
-
-
+
+
+ DisabledDésactivé
-
+ LanguageLangue
@@ -1651,40 +1828,45 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Graine
-
+ Wallet nameNom du portefeuille
-
+ Backup seedGraine de sauvegarde
-
+ Wallet pathChemin du portefeuille
-
+ Daemon addressAdresse du démon
-
+ TestnetTestnet
-
+ Restore heightHauteur de réstoration
-
+ New wallet details:Détails du nouveau portefeuille :
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
@@ -1702,44 +1884,44 @@ Veuillez mettre à jour ou vous connecter à un autre démon
WizardMain
-
+ A wallet with same name already exists. Please change wallet nameUn portefeuille avec le même nom existe déjà. Veuillez changer le nom du portefeuille
-
+ Non-ASCII characters are not allowed in wallet path or account nameLes caractères non ASCII ne sont pas autorisés dans le chemin du portefeuille ou le nom du compte
-
+ USE MONEROUTILISER MONERO
-
+ Create walletCréer un portefeuille
-
+ SuccessSuccès
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1Le portefeuille en vue seule a été créé. Vous pouvez l'ouvrir en fermant le portefeuille actuel, puis en cliquant sur l'option "Ouvrir un fichier portefeuille" et en sélectionnant le portefeuille en vue seule dans :
%1
-
+ ErrorErreur
-
+ AbortAbandonner
@@ -1755,47 +1937,47 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Hauteur de restoration
-
+ Wallet nameNom du portefeuille
-
+ Restore from seedRestaurer à partir de la graine
-
+ Restore from keysRestaurer à partir des clés
-
+ Account address (public)Adresse du compte (publique)
-
+ View key (private)Clé d'audit (privée)
-
+ Spend key (private)Clé de dépense (privée)
-
+ Restore height (optional)Hauteur de restoration (facultatif)
-
+ Your wallet is stored inVotre portefeuille est stocké dans
-
+ Please choose a directoryVeuillez choisir un répertoire
@@ -1820,27 +2002,27 @@ Veuillez mettre à jour ou vous connecter à un autre démon
WizardOptions
-
+ Welcome to Monero!Bienvenue dans Monero !
-
+ Please select one of the following options:Veuillez sélectionner une des options suivantes :
-
+ Create a new walletCréer un nouveau portefeuille
-
+ Restore wallet from keys or mnemonic seedRestaurer un portefeuille à partir des clés ou de la graine mnémonique
-
+ Open a wallet from fileOuvrir un fichier portefeuille
@@ -1866,7 +2048,7 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Veuillez configurer l'adresse du démon ci-dessous.
-
+ TestnetTestnet
@@ -1896,13 +2078,13 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Confirmer le mot de passe
-
-
+
+ Give your wallet a passwordMettre un mot de passe à votre portefeuille
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):Note : ce mot de passe ne pourra pas être recupéré. Si vous l'oubliez vous devrez restaurer votre portefeuille avec sa graine mnémonique de 25 mots.<br/><br/>
@@ -1912,7 +2094,7 @@ Veuillez mettre à jour ou vous connecter à un autre démonWizardPasswordUI
-
+ PasswordMot de passe
@@ -1933,25 +2115,28 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Veuillez entrer votre clé privée de 25 mots
-
+ Restore walletRestaurer un portefeuille
- Enter your 25 word mnemonic seed:
- Entrez votre graine mnémonique de 25 mots :
+ Entrez votre graine mnémonique de 25 mots :WizardWelcome
- Welcome
- Bienvenue
+ Bienvenue
-
+
+ Welcome to Monero!
+ Bienvenue dans Monero !
+
+
+ Please choose a language and regional format.Veuillez choisir une langue et un format régional.
@@ -1959,19 +2144,19 @@ Veuillez mettre à jour ou vous connecter à un autre démon
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorErreur
-
+ Couldn't open wallet: Impossible d'ouvrir le portefeuille :
@@ -1980,75 +2165,90 @@ Veuillez mettre à jour ou vous connecter à un autre démon
Synchronisation des blocs %1 / %2
-
+ Unlocked balance (~%1 min)Solde débloqué (~%1 min)
-
+ Unlocked balanceSolde débloqué
-
+
+ Unlocked balance (waiting for block)
+
+
+
+ Waiting for daemon to start...Attente du démarrage du démon...
-
+ Waiting for daemon to stop...Attente de l'arrêt du démon...
-
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+ Can't create transaction: Wrong daemon version: Impossible de créer la transaction : mauvaise version de démon :
-
-
+
+ Can't create transaction: Impossible de créer la transaction :
-
-
-
-
+
+
+
+ No unmixable outputs to sweepAucune sortie non mélangeable à balayer
-
-
+
+ ConfirmationConfirmation
-
-
+
+ Please confirm transaction:
Veuillez confirmer la transaction :
-
+
Address:
Adresse :
-
+
Payment ID:
ID de paiement :
-
-
+
+
Amount:
@@ -2057,24 +2257,50 @@ Amount:
Montant :
-
-
+
+
Fee:
Frais :
-
+
+
+
+Ringsize:
+
+
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+ Arrêter démon
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
Ring size:
-
+
Taille du cercle :
-
+ This address received %1 monero, with %2 confirmation(s).Cette adresse a reçu %1 monero, avec %2 confirmation(s).
@@ -2087,14 +2313,14 @@ Mixin:
Mixin :
-
+
Number of transactions:
Nombre de transactions :
-
+
Description:
@@ -2103,42 +2329,42 @@ Description:
Description :
-
+ Amount is wrong: expected number from %1 to %2Montant erroné : nombre entre %1 et %2 attendu
-
+ insufficient funds. Unlocked balance: %1fonds insuffisants. Solde débloqué : %1
-
+ Couldn't send the money: Impossible d'envoyer l'argent :
-
+ InformationInformation
-
+ Money sent successfully: %1 transaction(s) Argent envoyé avec succès : %1 transaction(s)
-
+ Transaction saved to file: %1Transaction enregistrée dans le fichier : %1
-
+ Payment checkVérification de paiement
-
+ This address received %1 monero, but the transaction is not yet minedCette adresse a reçu %1 monero, mais la transaction n'a pas encore été incluse dans un bloc
@@ -2147,37 +2373,37 @@ Description :
Cette adresse a reçu %1 monero, avec %2 confirmations
-
+ This address received nothingCette adresse n'a rien reçu
-
+ Balance (syncing)Solde (synchronisation en cours)
-
+ BalanceSolde
-
+ Please wait...Veuillez patienter…
-
+ Program setup wizardAssistant de configuration du programme
-
+ MoneroMonero
-
+ send to the same destinationenvoyer à la même destination
diff --git a/translations/monero-core_hr.ts b/translations/monero-core_hr.ts
index 9478c026..ffbd9e1d 100644
--- a/translations/monero-core_hr.ts
+++ b/translations/monero-core_hr.ts
@@ -48,6 +48,11 @@
Description <font size='2'>(Optional)</font>
+
+
+ Add
+
+ Error
@@ -73,11 +78,6 @@
Give this entry a name or description
-
-
- ADD
-
- AddressBookTable
@@ -131,28 +131,18 @@
DaemonManagerDialog
-
- Daemon doesn't appear to be running
+
+ Starting Monero daemon in %1 seconds
-
- Start daemon
+
+ Start daemon (%1)
-
- Cancel
-
-
-
-
- Daemon startup flags
-
-
-
-
- (optional)
+
+ Use custom settings
@@ -241,7 +231,7 @@
- FILTER
+ Filter
@@ -455,105 +445,115 @@
-
- Unlocked Balance:
+
+ Unlocked BalanceMining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -561,27 +561,32 @@
NetworkStatusItem
-
- Connected
+
+ Synchronizing
- Wrong version
-
-
-
-
- Disconnected
+ Connected
+ Wrong version
+
+
+
+
+ Disconnected
+
+
+
+ Invalid connection status
-
+ Network status
@@ -599,12 +604,12 @@
-
+ Cancel
-
+ Ok
@@ -612,30 +617,35 @@
PrivacyLevelSmall
-
- LOW
+
+ Low
-
- MEDIUM
+
+ Medium
-
- HIGH
+
+ HighProgressBar
-
- Synchronizing blocks %1/%2
+
+ Establishing connection...
-
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocks
@@ -702,6 +712,11 @@
ReadOnly wallet address displayed here
+
+
+ 16 hexadecimal characters
+
+ Integrated address
@@ -747,11 +762,6 @@
Payment ID
-
-
- 16 or 64 hexadecimal characters
-
- Generate
@@ -803,144 +813,142 @@
Settings
-
-
- Click button to show seed
-
-
-
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Show seed
-
+ Manage daemon
-
+ Start daemon
-
+ Stop daemon
-
- Show log
+
+ Show status
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+ Daemon address
-
+ Hostname / IP
-
+ Port
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+
+
+
+ Save
-
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon log
-
+
+ Wallet mnemonic seed
+
+
+
+ Error
-
+ Wrong password
-
+ Manage wallet
-
+ Close wallet
@@ -986,7 +994,24 @@
- SIGN
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
@@ -995,12 +1020,6 @@
Or file:
-
-
-
- SELECT
-
- Filename with message to sign
@@ -1025,9 +1044,8 @@
-
-
- VERIFY
+
+ Please choose a file to verify
@@ -1044,12 +1062,12 @@
StandardDialog
-
+ Ok
-
+ Cancel
@@ -1058,232 +1076,213 @@
TickDelegate
- NORMAL
+ Normal
- MEDIUM
+ Medium
- HIGH
+ HighTransfer
-
+ OpenAlias error
-
- Privacy level (ring size %1)
-
-
-
-
+ Amount
-
+ Transaction priority
-
- ALL
-
-
-
-
- LOW (x1 fee)
-
-
-
-
- MEDIUM (x20 fee)
-
-
-
-
- HIGH (x166 fee)
-
-
-
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
-
- QRCODE
-
-
-
-
- RESOLVE
-
-
-
-
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
-
+
+ Send
+
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ Error
-
+ Error:
-
-
+
+ Information
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount:
-
+
Fee:
-
+
-Ring size:
+Ringsize:
-
+ Confirmation
-
+ Can't submit transaction:
-
+ Money sent successfully
-
+ Wallet is not connected to daemon.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon
-
+ Waiting on daemon synchronization to finish
@@ -1293,35 +1292,65 @@ Please upgrade or connect to another daemon
-
+ Transaction cost
-
+ Payment ID <font size='2'>( Optional )</font>
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+ 16 or 64 hexadecimal characters
-
-
- SEND
-
-
-
-
- Advanced
-
-
-
-
- SWEEP UNMIXABLE
-
- TxKey
@@ -1376,13 +1405,13 @@ Please upgrade or connect to another daemon
-
- Transaction key
+
+ Check
-
- CHECK
+
+ Transaction key
@@ -1427,7 +1456,7 @@ Please upgrade or connect to another daemon
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1439,11 +1468,6 @@ Please upgrade or connect to another daemon
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1481,59 +1505,64 @@ Please upgrade or connect to another daemon
WizardFinish
-
-
-
+
+
+ Enabled
-
-
-
+
+
+ Disabled
-
+ Language
-
+ Wallet name
-
+ Backup seed
-
+ Wallet path
-
+ Daemon address
-
+ Testnet
-
+ Restore height
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
@@ -1543,43 +1572,43 @@ Please upgrade or connect to another daemon
WizardMain
-
+ A wallet with same name already exists. Please change wallet name
-
+ Non-ASCII characters are not allowed in wallet path or account name
-
+ USE MONERO
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ Error
-
+ Abort
@@ -1587,47 +1616,47 @@ Please upgrade or connect to another daemon
WizardManageWalletUI
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored in
-
+ Please choose a directory
@@ -1648,27 +1677,27 @@ Please upgrade or connect to another daemon
WizardOptions
-
+ Welcome to Monero!
-
+ Please select one of the following options:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1678,7 +1707,7 @@ Please upgrade or connect to another daemon
-
+ Testnet
@@ -1686,13 +1715,13 @@ Please upgrade or connect to another daemon
WizardPassword
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1701,7 +1730,7 @@ Please upgrade or connect to another daemon
WizardPasswordUI
-
+ Password
@@ -1713,26 +1742,21 @@ Please upgrade or connect to another daemon
WizardRecoveryWallet
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
-
- Welcome
+
+ Welcome to Monero!
-
+ Please choose a language and regional format.
@@ -1740,200 +1764,235 @@ Please upgrade or connect to another daemon
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Error
-
+ Couldn't open wallet:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balance
-
+ Waiting for daemon to start...
-
+ Waiting for daemon to stop...
-
+ Can't create transaction: Wrong daemon version:
-
-
+
+ Can't create transaction:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ Confirmation
-
-
+
+ Please confirm transaction:
-
+
Address:
-
+
Payment ID:
-
-
+
+
Amount:
-
-
+
+
Fee:
-
-
-
-Ring size:
-
-
-
-
+ This address received %1 monero, with %2 confirmation(s).
-
+
Number of transactions:
-
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+
+
+
+Ringsize:
+
+
+
+
Description:
-
+ Amount is wrong: expected number from %1 to %2
-
+ insufficient funds. Unlocked balance: %1
-
+ Couldn't send the money:
-
+ Information
-
+ Money sent successfully: %1 transaction(s)
-
+ Transaction saved to file: %1
-
+ Payment check
-
+ This address received %1 monero, but the transaction is not yet mined
-
+ This address received nothing
-
+ Balance (syncing)
-
+ Balance
-
+ Please wait...
-
+ Program setup wizard
-
+ Monero
-
+ send to the same destination
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
diff --git a/translations/monero-core_id.ts b/translations/monero-core_id.ts
index b9798932..bc211ab9 100644
--- a/translations/monero-core_id.ts
+++ b/translations/monero-core_id.ts
@@ -4,55 +4,95 @@
AddressBook
-
+ Add new entryMembuat alamat baru
-
-
+ AddressAlamat
-
+ <b>Tip tekst test</b>
-
+
+ QRCODE
+
+
+
+
+ 4...
+
+
+
+ Payment ID <font size='2'>(Optional)</font>Menandai Pembayaran<font size='2'>(Ikhtiari)</font>
-
+ <b>Payment ID</b><br/><br/>A unique user name used in<br/>the address book. It is not a<br/>transfer of information sent<br/>during the transfer<b>Menandai Pembayaran</b><br/><br/>Pengenal unik degunakan dalam<br/>buku alamal. Tidak pernah dikirim ke orang-orang lain
-
- Description <font size='2'>(Local database)</font>
- Catatan <font size='2'>(Disimpan secara lokal)</font>
+
+ Paste 64 hexadecimal characters
+
-
+
+ Description <font size='2'>(Optional)</font>
+
+
+
+
+ Give this entry a name or description
+
+
+
+
+ Add
+
+
+
+
+ Error
+ Kesalahan
+
+
+
+ Invalid address
+
+
+
+
+ Can't create entry
+
+
+
+ Description <font size='2'>(Local database)</font>
+ Catatan <font size='2'>(Disimpan secara lokal)</font>
+
+
+ <b>Tip test test</b><br/><br/>test line 2
- ADD
- TAMBAH
+ TAMBAH
- Payment ID
- Menandai Pembayaran
+ Menandai Pembayaran
- Description
- Catatan
+ Catatan
@@ -92,16 +132,45 @@
- DaemonProgress
+ DaemonConsole
-
- Synchronizing blocks %1/%2
- Menerima dan memeriksa blok %1/%2
+
+ Close
+
+
+
+
+ command + enter (e.g help)
+
+
+
+
+ DaemonManagerDialog
+
+
+ Starting Monero daemon in %1 seconds
+
+
+
+
+ Start daemon (%1)
+
+
+
+
+ Use custom settings
+
+
+
+
+ DaemonProgress
+
+ Synchronizing blocks %1/%2
+ Menerima dan memeriksa blok %1/%2
- Synchronizing blocks
- Menerima dan memeriksa blok
+ Menerima dan memeriksa blok
@@ -163,57 +232,63 @@
<b>Jumlah total untuk pembayaran yang dipilih</b>
-
+
+ Type for incremental search...
+
+
+
+
+ Filter
+
+
+ Incremental search
- Pencarian aktif
+ Pencarian aktif
- Search transfers for a given string
- Cari pembayaran dengan catatan khusus
+ Cari pembayaran dengan catatan khusus
- Type search string
- Masukan catatan yang ingin dicari
+ Masukan catatan yang ingin dicari
-
+ Date fromDari tanggal
-
-
-
-
-
+
+
+
+
+ <b>Tip tekst test</b>
-
-
+
+ ToKe
- FILTER
- MENYARING
+ MENYARING
-
+ Advanced filteringPenyaringan terperinci
-
+ Type of transactionGolongan transaksi
-
+ Amount fromJumlah dari
@@ -221,53 +296,73 @@
HistoryTable
-
+ Tx ID:Menandai transaksi:
-
-
+
+ Payment ID:Menandai pembayaran:
-
+ Tx key:Kunci transaksi:
-
+ Tx note:Catatan untuk transaksi:
-
+
+ Destinations:
+
+
+
+ No more resultsHasil selesai
-
+ DetailsPerincian
-
+ BlockHeight:Ketinggian blok:
-
+
+ (%1/10 confirmations)
+
+
+
+
+ UNCONFIRMED
+
+
+
+
+ PENDING
+
+
+
+ DateTanggal
-
+ AmountJumlah
-
+ FeeBiaya
@@ -275,78 +370,120 @@
LeftPanel
-
+ BalanceSaldo Rekening
-
+ Test tip 1<br/><br/>line 2
-
+ Unlocked balanceSaldo rekening yang tidak terkunci
-
+ Test tip 2<br/><br/>line 2
-
+ SendKIRIM
- T
- T
+ T
-
+ ReceiveMenerima
-
+ RR
- Verify payment
- Mengesahkan pembayaran
+ Mengesahkan pembayaran
-
+ KK
-
+ HistoryDaftar
-
+
+ Address book
+
+
+
+
+ B
+
+
+
+ HH
-
+
+ Advanced
+
+
+
+
+ D
+
+
+
+
+ Mining
+
+
+
+
+ M
+
+
+
+
+ Check payment
+
+
+
+ Sign/verifyMenandatangani/mengesahkan
-
-
+
+ E
+
+
+
+ SS
-
+
+ I
+
+
+
+ SettingsPengaturan
@@ -354,40 +491,161 @@
MiddlePanel
- Balance:
- Saldo rekening:
+ Saldo rekening:
- Unlocked Balance:
- Saldo rekening yang tidak terkunci:
+ Saldo rekening yang tidak terkunci:
+
+
+
+ Balance
+ Saldo Rekening
+
+
+
+ Unlocked Balance
+
+
+
+
+ Mining
+
+
+ Solo mining
+
+
+
+
+ (only available for local daemons)
+
+
+
+
+ Mining helps the Monero network build resilience.<br>
+
+
+
+
+ The more mining is done, the harder it is to attack the network.<br>
+
+
+
+
+ Mining also gives you a small chance to earn some Monero.<br>
+
+
+
+
+ Your computer will search for Monero block solutions.<br>
+
+
+
+
+ If you find a block, you will get the associated reward.<br>
+
+
+
+
+ CPU threads
+
+
+
+
+ (optional)
+
+
+
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+
+ Manage miner
+
+
+
+
+ Start mining
+
+
+
+
+ Error starting mining
+
+
+
+
+ Couldn't start mining.<br>
+
+
+
+
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
+
+
+
+
+ Stop mining
+
+
+
+
+ Status: not mining
+
+
+
+
+ Mining at %1 H/s
+
+
+
+
+ Not mining
+
+
+
+
+ Status:
+ NetworkStatusItem
-
+
+ Synchronizing
+
+
+
+ ConnectedTersambung
-
+ Wrong versionVersi salah
-
+ DisconnectedKoneksi terputus
-
+ Invalid connection statusStatus sambungan salah
-
+ Network statusStatus jaringan
@@ -395,17 +653,22 @@
PasswordDialog
-
+ Please enter wallet passwordSilahkan masuk kata sandi untuk dompet anda
-
+
+ Please enter wallet password for:<br>
+
+
+
+ CancelMembatalkan
-
+ OkOk
@@ -413,66 +676,175 @@
PrivacyLevelSmall
- LOW
- RENDAH
+ RENDAH
- MEDIUM
- SEDANG
+ SEDANG
- HIGH
- TINGGI
+ TINGGI
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+
+
+
+
+ ProgressBar
+
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+
+ Synchronizing blocks
+ Menerima dan memeriksa blokReceive
-
+ Invalid payment IDMenandai pembayaran salah
+ WARNING: no connection to daemon
+
+
+
+
+ in the txpool: %1
+
+
+
+
+ %2 confirmations: %3 (%1)
+
+
+
+
+ 1 confirmation: %2 (%1)
+
+
+
+
+ No transaction found yet...
+
+
+
+
+ Transaction found
+
+
+
+
+ %1 transactions found
+
+
+
+
+ with more money (%1)
+
+
+
+
+ with not enough money (%1)
+
+
+
+ AddressAlamat
-
+ ReadOnly wallet address displayed hereAlamat dompet BacaSaja ditampilkan disini
-
+
+ 16 hexadecimal characters
+
+
+
+ Integrated addressAlamat tergabung (menandai pembayaran sudah termasuk)
-
+ ReadOnly wallet integrated address displayed hereAlamat tergabung dompet BacaSaja ditampilkan disini
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Tracking <font size='2'> (</font><a href='#'>help</a><font size='2'>)</font>
+
+
+
+
+ Tracking payments
+
+
+
+
+ <p><font size='+2'>This is a simple sales tracker:</font></p><p>Click Generate to create a random payment id for a new customer</p> <p>Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).</p><p>This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.</p>It's up to you whether to accept unconfirmed transactions or not. It is likely they'll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).</p>
+
+
+
+
+ Save QrCode
+
+
+
+
+ Failed to save QrCode to
+
+
+
+
+ Save As
+
+
+
+ Payment IDMenandai pembayaran
- 16 or 64 hexadecimal characters
- 16 atau 64 simbol heksadesimal
+ 16 atau 64 simbol heksadesimal
-
+ GenerateMembuat
-
-
+
+ AmountJumlah
@@ -516,58 +888,158 @@
Settings
-
- Click button to show seed
- Pekan tombol untuk menunjukkan biji acak Anda
+ Pekan tombol untuk menunjukkan biji acak Anda
- Mnemonic seed:
- Kata-kata biji acak Anda:
+ Kata-kata biji acak Anda:
- It is very important to write it down as this is the only backup you will need for your wallet.
- Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan
+ Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan
-
+
+ Create view only wallet
+
+
+
+ Show seedMenunjukkan biji acak
-
+
+ Manage daemon
+
+
+
+
+ Start daemon
+
+
+
+
+ Stop daemon
+
+
+
+
+ Show status
+
+
+
+
+ Daemon startup flags
+
+
+
+
+ (optional)
+
+
+
+ Daemon addressAlamat jurik
-
+ Hostname / IPNama host / IP
-
+ PortPort
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ Kata sandi
+
+
+ SaveMenyimpan
-
+
+ Layout settings
+
+
+
+
+ Custom decorations
+
+
+
+
+ Log level
+
+
+
+
+ (e.g. *:WARNING,net.p2p:DEBUG)
+
+
+
+
+ Version
+
+
+
+
+ GUI version:
+
+
+
+
+ Embedded Monero version:
+
+
+
+
+ Daemon log
+
+
+
+
+ Wallet mnemonic seed
+
+
+
+
+ Error
+ Kesalahan
+
+
+
+ Wrong password
+
+
+
+ Manage walletMengelola dompet Anda
- Close current wallet and open wizard
- Menutup dompet saat ini dan membuka wizard
+ Menutup dompet saat ini dan membuka wizard
-
+ Close walletMenutup dompet
@@ -613,8 +1085,39 @@
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
+
+
+
+
+ Please choose a file to verify
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+ SIGN
- MENANDATANGANI
+ MENANDATANGANI
@@ -623,10 +1126,8 @@
Atau arsip:
-
- SELECT
- MEMILIH
+ MEMILIH
@@ -652,10 +1153,8 @@
Pesan untuk disahkan
-
- VERIFY
- MENGESAHKAN
+ MENGESAHKAN
@@ -663,20 +1162,19 @@
Nama arsip dengan pesan untuk disahkan
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Alamat penandatanganan <font size='2'> ( Mengetikkan atau memilih dari </font> <a href='#'>Buku alamat</a><font size='2'> )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Alamat penandatanganan <font size='2'> ( Mengetikkan atau memilih dari </font> <a href='#'>Buku alamat</a><font size='2'> )</font>StandardDialog
-
+ OkOk
-
+ CancelMembatalkan
@@ -684,125 +1182,377 @@
TickDelegate
- LOW
- RENDAH
+ RENDAH
+
+
+ MEDIUM
+ SEDANG
+
+
+ HIGH
+ TINGGI
+
+
+
+ Normal
+
- MEDIUM
- SEDANG
+ Medium
+
- HIGH
- TINGGI
+ High
+ Transfer
-
+
+ OpenAlias error
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+ AmountJumlah
-
+ Transaction priorityKepentingan transaksi
+
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ No valid address found at this OpenAlias address
+
+
+
+
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
+
+
+
+
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
+
+
+
+
+
+ Internal error
+
+
+
+
+ No address found
+
+
+
+
+ Description <font size='2'>( Optional )</font>
+
+
+
+
+ Saved to local wallet history
+
+
+
+
+ Send
+ KIRIM
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+
+ create tx file
+
+
+
+
+ sign tx file
+
+
+
+
+ submit tx file
+
+
+
+
+ Rescan spent
+
+
+
+
+
+
+ Error
+ Kesalahan
+
+
+
+ Error:
+
+
+
+
+
+ Information
+ Informasi
+
+
+
+ Sucessfully rescanned spent outputs
+
+
+
+
+
+ Please choose a file
+
+
+
+
+ Can't load unsigned transaction:
+
+
+
+
+
+Number of transactions:
+
+
+
+
+
+Transaction #%1
+
+
+
+
+
+Recipient:
+
+
+
+
+
+payment ID:
+
+
+
+
+
+Amount:
+
+
+
+
+
+Fee:
+
+
+
+
+
+Ringsize:
+
+
+
+
+ Confirmation
+ Konfirmasi
+
+
+
+ Can't submit transaction:
+
+
+
+
+ Money sent successfully
+
+
+
+
+
+ Wallet is not connected to daemon.
+
+
+
+
+ Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon
+
+
+
+
+ Waiting on daemon synchronization to finish
+
+
- or ALL
- atau SEMUA
+ atau SEMUA
- LOW
- RENDAH
+ RENDAH
- MEDIUM
- SEDANG
+ SEDANG
- HIGH
- TINGGI
+ TINGGI
- Privacy level
- Tingkatan privasi
+ Tingkatan privasi
-
+ Transaction costBiaya transaksi
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Alamat <font size='2'> ( Mengetikkan atau memilih dari </font> <a href='#'>Buku alamat</a><font size='2'> )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Alamat <font size='2'> ( Mengetikkan atau memilih dari </font> <a href='#'>Buku alamat</a><font size='2'> )</font>
-
+ Payment ID <font size='2'>( Optional )</font>Menandai pembayaran <font size='2'>( Ikhtiari )</font>
-
+ 16 or 64 hexadecimal characters16 atau 64 simbol heksadesimal
- Description <font size='2'>( An optional description that will be saved to the local address book if entered )</font>
- Catatan <font size='2'>(Catatan ikhtiari yang akan disimpan dalam buku alamat lokal)</font>
+ Catatan <font size='2'>(Catatan ikhtiari yang akan disimpan dalam buku alamat lokal)</font>
- SEND
- KIRIM
+ KIRIM
- SWEEP UNMIXABLE
- MENGUMPULKAN KELUARAN YANG TIDAK DAPAT DICAMPUR
+ MENGUMPULKAN KELUARAN YANG TIDAK DAPAT DICAMPURTxKey
- You can verify that a third party made a payment by supplying:
- Anda bisa periksa pembayaran oleh pihak ketiga dengan:
+ Anda bisa periksa pembayaran oleh pihak ketiga dengan:
+
+
+ - the recipient address,
+ - alamat penerima,
+
+
+ - the transaction ID,
+ - menandai transaksi
+
+
+ - the tx secret key supplied by the sender
+ - rahasia transaksi dari pengirim
+
+
+ If a payment was made up of several transactions, each transaction must be checked, and the results added
+ Jika pembayaran termasuk beberapa transaksi, setiapnya harus diperiksa dan hasil ditambah
+
+
+
+ Verify that a third party made a payment by supplying:
+
- - the recipient address,
- - alamat penerima,
+ - the recipient address
+
- - the transaction ID,
- - menandai transaksi
+ - the transaction ID
+
- - the tx secret key supplied by the sender
- - rahasia transaksi dari pengirim
+ - the secret transaction key supplied by the sender
+
- If a payment was made up of several transactions, each transaction must be checked, and the results added
- Jika pembayaran termasuk beberapa transaksi, setiapnya harus diperiksa dan hasil ditambah
+ If a payment had several transactions then each must be checked and the results combined.
+
@@ -821,8 +1571,22 @@
+ Paste tx ID
+
+
+
+
+ Paste tx key
+
+
+
+
+ Check
+
+
+ Transaction ID here
- Menandai transaksi disini
+ Menandai transaksi disini
@@ -830,14 +1594,12 @@
Kunci transaksi
- Transaction key here
- Kunci transaksi disini
+ Kunci transaksi disini
- CHECK
- MEMERIKSA
+ MEMERIKSA
@@ -853,42 +1615,57 @@
Mulailah rantaiblok Monero?
- It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan. Langsung, Anda akan diminta memastikan biji acak supaya dicatat dengan benar
+ Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan. Langsung, Anda akan diminta memastikan biji acak supaya dicatat dengan benar
-
+
+ It is very important to write it down as this is the only backup you will need for your wallet.
+ Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan
+
+
+ Enable disk conservation mode?Menggunakan disk cara penghematan?
-
+ Disk conservation mode uses substantially less disk-space, but the same amount of bandwidth as a regular Monero instance. However, storing the full blockchain is beneficial to the security of the Monero network. If you are on a device with limited disk space, then this option is appropriate for you.Cara penghematan bisa mengurangi ruang hard disk untuk Monero, tetapi tidak mengurangi jumlah data. Menyimpan rantaiblok lengkap bermanfaat untuk jaringan. Kalau Anda punya hard disk yang kecil, pilihan ini sesuai untuk Anda.
-
+ Allow background mining?Mengizinkan pertambangan di balik layar?
-
+ Mining secures the Monero network, and also pays a small reward for the work done. This option will let Monero mine when your computer is on mains power and is idle. It will stop mining when you continue working.Pertambangan menjaminkan sekuritas jaringan Monero, dan juga mengeluarkan hadiah kecil kepada yang menambang dengan sukses. Pilihan ini mengizinkan Monero untuk pertambangan kapan komputer Anda menggunakan daya listrik dan Anda tidak bekerja. Pertambangan berhenti sewaktu saat Anda bekerja lagi.
+
+ WizardCreateViewOnlyWallet
+
+
+ Create view only wallet
+
+
+WizardCreateWallet
- A new wallet has been created for you
- Dompet baru telah dibuat untuk Anda
+ Dompet baru telah dibuat untuk Anda
- This is the 25 word mnemonic for your wallet
- Ini adalah 25 kata biji acak untuk dompet Anda
+ Ini adalah 25 kata biji acak untuk dompet Anda
+
+
+
+ Create a new wallet
+
@@ -927,97 +1704,182 @@
WizardFinish
-
-
-
+
+
+ EnabledDiaktifkan
-
-
-
+
+
+ DisabledDinonaktifkan
-
+ LanguageBahasa
- Account name
- Nama saldo rekening
+ Nama saldo rekening
- Seed
- Biji acak
+ Biji acak
-
+
+ Wallet name
+
+
+
+
+ Backup seed
+
+
+
+ Wallet pathPath untuk dompet
-
+ Daemon addressAlamat jurik
-
+ TestnetTestnet (jaringan pelatihan)
-
+ Restore heightMengembalikan dompet dari blok nomor
-
- An overview of your Monero configuration is below:
- Gambaran ikhtisar konfigurasi Monero Anda diberikan di bawah ini:
+
+ New wallet details:
+
+
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
+
+
+
+ An overview of your Monero configuration is below:
+ Gambaran ikhtisar konfigurasi Monero Anda diberikan di bawah ini:
+
+ You’re all setup!
- Semua sudah selesai!
+ Semua sudah selesai!WizardMain
-
+ A wallet with same name already exists. Please change wallet nameDompet bernama ini sudah ada. Tolong mengganti nama dompet yang baru
-
+
+ Non-ASCII characters are not allowed in wallet path or account name
+
+
+
+ USE MONEROMENGGUNAKAN MONERO
+
+
+ Create wallet
+
+
+
+
+ Success
+
+
+
+
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
+%1
+
+
+
+
+ Error
+ Kesalahan
+
+
+
+ Abort
+
+ WizardManageWalletUI
- This is the name of your wallet. You can change it to a different name if you’d like:
- Ini nama dompet Anda. Bisa digantikan untuk nama lain kalau Anda mau:
+ Ini nama dompet Anda. Bisa digantikan untuk nama lain kalau Anda mau:
- Restore height
- Mengembalikan dompet dari blok nomor
+ Mengembalikan dompet dari blok nomor
-
+
+ Wallet name
+
+
+
+
+ Restore from seed
+
+
+
+
+ Restore from keys
+
+
+
+
+ Account address (public)
+
+
+
+
+ View key (private)
+
+
+
+
+ Spend key (private)
+
+
+
+
+ Restore height (optional)
+
+
+
+ Your wallet is stored inDompet Anda disimpan di
-
+ Please choose a directorySilahkan memilihkan direktori
@@ -1025,45 +1887,70 @@
WizardMemoTextInput
- It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan. Langsung, Anda akan diminta memastikan biji acak supaya dicatat dengan benar
+ Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan. Langsung, Anda akan diminta memastikan biji acak supaya dicatat dengan benar
+
+
+
+ Enter your 25 word mnemonic seed
+
+
+
+
+ This seed is <b>very</b> important to write down and keep secret. It is all you need to backup and restore your wallet.
+ WizardOptions
-
+ Welcome to Monero!Selamat datang di dunia Monero!
-
+ Please select one of the following options:Mohon memilihkan salah satu opsi:
-
+
+ Create a new wallet
+
+
+
+
+ Restore wallet from keys or mnemonic seed
+
+
+
+
+ Open a wallet from file
+
+
+
+
+ Custom daemon address (optional)
+
+
+ This is my first time, I want to create a new account
- Ini saat pertama saya, dan saya ingin membuat rekening yang baru
+ Ini saat pertama saya, dan saya ingin membuat rekening yang baru
- I want to recover my account from my 25 word seed
- Saya ingin mengembalikan rekening dari 25 kata-kata biji acak saya
+ Saya ingin mengembalikan rekening dari 25 kata-kata biji acak saya
- I want to open a wallet from file
- Saya ingin membuka dompet dari arsip
+ Saya ingin membuka dompet dari arsip
- Please setup daemon address below.
- Mohon mendirikan alamat jurik di bawah
+ Mohon mendirikan alamat jurik di bawah
-
+ TestnetTestnet (jaringan pelatihan)
@@ -1071,55 +1958,82 @@
WizardPassword
- Now that your wallet has been created, please set a password for the wallet
- Mohon memilih kata sandi untuk dompet anda yang baru dibuat
+ Mohon memilih kata sandi untuk dompet anda yang baru dibuat
- Now that your wallet has been restored, please set a password for the wallet
- Mohon memilih kata sandi untuk dompet anda yang baru dikembalikan
+ Mohon memilih kata sandi untuk dompet anda yang baru dikembalikan
- Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given<br/><br/>
Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.
- Ingatlah kata sandi ini tidak dapat dikembalikan, dan kalau lupa, dompet Anda harus dikembalikan dari biji acak yang baru dicatat<br/><br/>
+ Ingatlah kata sandi ini tidak dapat dikembalikan, dan kalau lupa, dompet Anda harus dikembalikan dari biji acak yang baru dicatat<br/><br/>
Kata sandi anda akan digunakan supaya melindungi dompet Anda dan juga mengizinkan setiap tindakan, jadi memastikan kata sandi Anda cukup sulit
- Password
- Kata sandi
+ Kata sandi
- Confirm password
- Memastikan kata sandi
+ Memastikan kata sandi
+
+
+
+
+ Give your wallet a password
+
+
+
+
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
+ <b>Enter a strong password</b> (using letters, numbers, and/or symbols):
+
+
+
+
+ WizardPasswordUI
+
+
+ Password
+ Kata sandi
+
+
+
+ Confirm password
+ Memastikan kata sandiWizardRecoveryWallet
- We're ready to recover your account
- Siap mengembalikan rekening Anda
+ Siap mengembalikan rekening Anda
- Please enter your 25 word private key
- Silahkan memasuk 25 kata biji acak Anda
+ Silahkan memasuk 25 kata biji acak Anda
+
+
+
+ Restore wallet
+ WizardWelcome
- Welcome
- Selamat Datang
+ Selamat Datang
-
+
+ Welcome to Monero!
+ Selamat datang di dunia Monero!
+
+
+ Please choose a language and regional format.Silahkan memilih bahasa dan pilihan daerah
@@ -1127,157 +2041,273 @@
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorKesalahan
-
+ Couldn't open wallet: Tidak bisa membuka dompet:
- Synchronizing blocks %1 / %2
- Menerima dan memeriksa blok %1 / %2
+ Menerima dan memeriksa blok %1 / %2
-
+ Can't create transaction: Wrong daemon version: Tidak bisa membuat transaksi: Versi jurik yang salah:
-
-
+
+ Can't create transaction: Tidak bisa membuat transaksi:
-
-
-
-
+
+
+
+ No unmixable outputs to sweepTidak ada keluaran yang tidak dapat dicampur
-
-
+
+ ConfirmationKonfirmasi
-
- Please confirm transaction:
- Silahkan mengkonfirmasi transaksi:
+ Silahkan mengkonfirmasi transaksi:
- Address:
- Alamat:
+ Alamat:
- Payment ID:
- Menandai pembayaran :
+ Menandai pembayaran :
-
- Amount:
- Jumlah:
+ Jumlah:
-
- Fee:
- Biaya:
+ Biaya:
- Mixin:
- Campuran:
+ Campuran:
+
+
+ Number of transactions:
+ Nomor transaksi:
+
+
+ Description:
+ Catatan:
+
+
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Unlocked balance (~%1 min)
+
+
+
+
+ Unlocked balance
+ Saldo rekening yang tidak terkunci
+
+
+
+ Waiting for daemon to start...
+
- Number of transactions:
- Nomor transaksi:
+ Waiting for daemon to stop...
+
-
- Description:
- Catatan:
+
+ Daemon failed to start
+
-
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+
+
+ Please confirm transaction:
+
+
+
+
+
+
+Address:
+
+
+
+
+
+Payment ID:
+
+
+
+
+
+
+
+Amount:
+
+
+
+
+
+
+Fee:
+
+
+
+
+
+
+Ringsize:
+
+
+
+
+
+Number of transactions:
+
+
+
+
+
+
+Description:
+
+
+
+ Amount is wrong: expected number from %1 to %2Jumlah salah: nomor antar %1 dan %2 diharapkan
-
+ insufficient funds. Unlocked balance: %1Dana tidak mencukupi. Saldo rekening yang tidak terkunci: %1
-
+ Couldn't send the money: Tidak bisa mengirim uang monero:
-
+ InformationInformasi
-
+ Money sent successfully: %1 transaction(s) Uang monero dikirim dengan sukses: %1 transaksi
-
+
+ Transaction saved to file: %1
+
+
+
+ Payment checkMengesahkan pembayaran
-
+ This address received %1 monero, but the transaction is not yet minedAlamat ini menerima %1 monero, tetapi transaksinya belum termasuk dalam blok
-
- This address received %1 monero, with %2 confirmations
- Alamat ini menerima %1 monero, dengan %2 konfirmasi
+
+ This address received %1 monero, with %2 confirmation(s).
+
-
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
+ This address received %1 monero, with %2 confirmations
+ Alamat ini menerima %1 monero, dengan %2 konfirmasi
+
+
+ This address received nothingAlamat ini tidak menerima apa-apa
-
+
+ Balance (syncing)
+
+
+
+
+ Balance
+ Saldo Rekening
+
+
+ Please wait...Mohon tunggu...
-
+ Program setup wizardWizard untuk medirikan program ini
-
+ MoneroMonero
-
+ send to the same destinationkirim ke tujuan yang sama
diff --git a/translations/monero-core_in.ts b/translations/monero-core_in.ts
index 29a92f29..b0dbf2f2 100644
--- a/translations/monero-core_in.ts
+++ b/translations/monero-core_in.ts
@@ -58,6 +58,11 @@
Give this entry a name or description
+
+
+ Add
+
+ Error
@@ -78,9 +83,8 @@
विवरण <font size='2'>(स्थानीय डेटाबेस)</font>
- ADD
- जोड़ें
+ जोड़ेंPayment ID
@@ -163,28 +167,18 @@
DaemonManagerDialog
-
- Daemon doesn't appear to be running
+
+ Starting Monero daemon in %1 seconds
-
- Start daemon
+
+ Start daemon (%1)
-
- Cancel
-
-
-
-
- Daemon startup flags
-
-
-
-
- (optional)
+
+ Use custom settings
@@ -289,8 +283,12 @@
+ Filter
+
+
+ FILTER
- फिल्टर करें
+ फिल्टर करें
@@ -519,105 +517,115 @@
धनराशि
-
- Unlocked Balance:
+
+ Unlocked BalanceMining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -625,27 +633,32 @@
NetworkStatusItem
-
+ Network statusनेटवर्क स्थिति
-
+ Connectedकनेक्ट किया गया
-
+
+ Synchronizing
+
+
+
+ Wrong version
-
+ Disconnectedडिस्कनेक्ट किया गया
-
+ Invalid connection status
@@ -663,12 +676,12 @@
-
+ Cancel
-
+ Ok
@@ -676,30 +689,47 @@
PrivacyLevelSmall
- LOW
- निम्न
+ निम्न
- MEDIUM
- मध्यम
+ मध्यम
- HIGH
- उच्च
+ उच्च
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+ ProgressBar
-
- Synchronizing blocks %1/%2
+
+ Establishing connection...
-
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocks
@@ -768,7 +798,7 @@
- 16 or 64 hexadecimal characters
+ 16 hexadecimal characters
@@ -871,144 +901,142 @@
Settings
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
-
- Click button to show seed
-
-
-
-
+ Manage wallet
-
+ Close wallet
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Show seed
-
+ Manage daemon
-
+ Start daemon
-
+ Stop daemon
-
- Show log
+
+ Show status
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+ Daemon address
-
+ Hostname / IP
-
+ Port
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+
+
+
+ Save
-
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon log
-
+
+ Wallet mnemonic seed
+
+
+
+ Errorत्रुटि
-
+ Wrong password
@@ -1054,7 +1082,24 @@
- SIGN
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
@@ -1063,12 +1108,6 @@
Or file:
-
-
-
- SELECT
-
- Filename with message to sign
@@ -1093,9 +1132,8 @@
-
-
- VERIFY
+
+ Please choose a file to verify
@@ -1112,12 +1150,12 @@
StandardDialog
-
+ Ok
-
+ Cancel
@@ -1128,20 +1166,28 @@
LOWनिम्न
+
+ MEDIUM
+ मध्यम
+
+
+ HIGH
+ उच्च
+
- NORMAL
+ Normal
- MEDIUM
- मध्यम
+ Medium
+
- HIGH
- उच्च
+ High
+
@@ -1154,22 +1200,17 @@
Transfer
-
+ OpenAlias error
-
- Privacy level (ring size %1)
-
-
-
-
+ Amountराशि
-
+ Transaction priorityलेनदेन प्राथमिकता
@@ -1179,215 +1220,236 @@
-
- ALL
-
-
-
-
- LOW (x1 fee)
-
-
-
-
- MEDIUM (x20 fee)
-
-
-
-
- HIGH (x166 fee)
-
-
-
-
+ Transaction cost
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
-
- QRCODE
-
-
-
-
- RESOLVE
-
-
-
-
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ 16 or 64 hexadecimal characters
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
-
- Advanced
+
+ Privacy level (ringsize %1)
-
- SWEEP UNMIXABLE
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
-
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ Send
+
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ Errorत्रुटि
-
+ Error:
-
-
+
+ Informationजानकारी
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount:
-
+
Fee:
-
+
-Ring size:
+Ringsize:
-
+ Confirmationपुष्टिकरण
-
+ Can't submit transaction:
-
+ Money sent successfullyपैसे सफलतापूर्वक भेजे गए
-
+ Wallet is not connected to daemon.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon
-
+ Waiting on daemon synchronization to finish
@@ -1420,7 +1482,7 @@ Please upgrade or connect to another daemon
<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> पता <font size='2'> ( Type in or select from </font> <a href='#'>पता</a><font size='2'> पुस्तिका )</font>
-
+ Payment ID <font size='2'>( Optional )</font>भुगतान आईडी <font size='2'>( वैकल्पिक )</font>
@@ -1429,9 +1491,8 @@ Please upgrade or connect to another daemon
विवरण <font size='2'>( एक वैकल्पिक विवरण जिसे दर्ज़ करने पर यह स्थानीय पता पुस्तिका में सहेजा जायेगा )</font>
- SEND
- भेजें
+ भेजें
@@ -1493,7 +1554,7 @@ Please upgrade or connect to another daemon
- CHECK
+ Check
@@ -1542,7 +1603,7 @@ Please upgrade or connect to another daemon
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1562,11 +1623,6 @@ Please upgrade or connect to another daemon
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1640,59 +1696,64 @@ Please upgrade or connect to another daemon
आप बिल्कुल तैयार हैं!
-
-
-
+
+
+ Enabled
-
-
-
+
+
+ Disabled
-
+ Language
-
+ Wallet name
-
+ Backup seed
-
+ Wallet path
-
+ Daemon address
-
+ Testnet
-
+ Restore height
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
@@ -1702,43 +1763,43 @@ Please upgrade or connect to another daemon
WizardMain
-
+ A wallet with same name already exists. Please change wallet name
-
+ Non-ASCII characters are not allowed in wallet path or account name
-
+ USE MONEROMONERO प्रयोग करें
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ Errorत्रुटि
-
+ Abort
@@ -1754,47 +1815,47 @@ Please upgrade or connect to another daemon
मेरा खाता नाम
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored inआपका वॉलेट संग्रहीत है
-
+ Please choose a directoryकृपया निर्देशिका चुनें
@@ -1819,27 +1880,27 @@ Please upgrade or connect to another daemon
WizardOptions
-
+ Welcome to Monero!Monero में आपका स्वागत है!
-
+ Please select one of the following options:कृपया निम्नलिखित विकल्पों में से एक का चयन करें:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1849,7 +1910,7 @@ Please upgrade or connect to another daemon
-
+ Testnet
@@ -1879,13 +1940,13 @@ Please upgrade or connect to another daemon
आपका पासवर्ड वॉलेट सुरक्षित रखने के लिए और गतिविधियों की पुष्टि करने के लिए प्रयोग किया जायेगा, तो इस बात का ध्यान रखें कि आपका पासवर्ड पर्याप्त रूप से सुरक्षित रहे।
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1894,7 +1955,7 @@ Please upgrade or connect to another daemon
WizardPasswordUI
-
+ Password
@@ -1918,26 +1979,25 @@ Please upgrade or connect to another daemon
Please enter your 25 word private keyकृपया अपनी 25 शब्दों की गोपनीय कुंजी डालें
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
- Welcome
- आपका स्वागत है
+ आपका स्वागत है
-
+
+ Welcome to Monero!
+ Monero में आपका स्वागत है!
+
+
+ Please choose a language and regional format.कृपया अपनी भाषा और क्षेत्रीय स्वरूप डालें।
@@ -1945,178 +2005,213 @@ Please upgrade or connect to another daemon
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Errorत्रुटि
-
+ Couldn't open wallet: वॉलेट नहीं खुल पाया:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balanceखुली धनराशि
-
+
+ Unlocked balance (waiting for block)
+
+
+
+ Waiting for daemon to start...
-
+ Waiting for daemon to stop...
-
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+ Can't create transaction: Wrong daemon version:
-
-
+
+ Can't create transaction: लेनदेन नहीं हो सकता है:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ Confirmationपुष्टिकरण
-
-
+
+ Please confirm transaction:
-
+
Address:
-
+
Payment ID:
-
-
+
+
Amount:
-
-
+
+
Fee:
-
+
-Ring size:
+Ringsize:
-
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
+
Number of transactions:
-
+
Description:
-
+ Amount is wrong: expected number from %1 to %2
-
+ insufficient funds. Unlocked balance: %1
-
+ Transaction saved to file: %1
-
+ Money sent successfully: %1 transaction(s)
-
+ Payment check
-
+ This address received %1 monero, but the transaction is not yet mined
-
+ This address received %1 monero, with %2 confirmation(s).
-
+ This address received nothing
-
+ Balance (syncing)
-
+ Balanceधनराशि
-
+ Please wait...
-
+ Monero
@@ -2141,12 +2236,12 @@ Description:
शुल्क:
-
+ Couldn't send the money: पैसेनहीं भेज पाया:
-
+ Informationजानकारी
@@ -2159,7 +2254,7 @@ Description:
वॉलेट प्रारंभ हो रहा है...
-
+ Program setup wizardप्रोग्राम सेटअप विज़ार्ड
@@ -2168,7 +2263,7 @@ Description:
Monero - डोनेशन
-
+ send to the same destinationसमान गंतव्य पर भेजें
diff --git a/translations/monero-core_it.ts b/translations/monero-core_it.ts
index 78208648..38e14686 100644
--- a/translations/monero-core_it.ts
+++ b/translations/monero-core_it.ts
@@ -58,6 +58,11 @@
Give this entry a name or description
+
+
+ Add
+
+ Error
@@ -82,9 +87,8 @@
Descrizione <font size='2'>(Database locale)</font>
- ADD
- AGGIUNGI
+ AGGIUNGIPayment ID
@@ -147,28 +151,18 @@
DaemonManagerDialog
-
- Daemon doesn't appear to be running
+
+ Starting Monero daemon in %1 seconds
-
- Start daemon
+
+ Start daemon (%1)
-
- Cancel
-
-
-
-
- Daemon startup flags
-
-
-
-
- (optional)
+
+ Use custom settings
@@ -276,8 +270,12 @@
+ Filter
+
+
+ FILTER
- FILTRA
+ FILTRA
@@ -506,105 +504,119 @@
Totale
-
+
+ Unlocked Balance
+
+
+ Unlocked Balance:
- Totale Sbloccato:
+ Totale Sbloccato:Mining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -612,27 +624,32 @@
NetworkStatusItem
-
+ Network statusStato Rete
-
+ ConnectedConnesso
-
+
+ Synchronizing
+
+
+
+ Wrong version
-
+ DisconnectedDisconnesso
-
+ Invalid connection status
@@ -650,12 +667,12 @@
-
+ Cancel
-
+ Ok
@@ -663,30 +680,51 @@
PrivacyLevelSmall
- LOW
- BASSA
+ BASSA
- MEDIUM
- MEDIA
+ MEDIA
- HIGH
- ALTA
+ ALTA
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+ ProgressBar
- Synchronizing blocks %1/%2
- Sincronizzazione blocchi %1/%2
+ Sincronizzazione blocchi %1/%2
-
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocksSincronizzazione blocchi
@@ -753,6 +791,11 @@
ReadOnly wallet address displayed herePortafoglio in sola lettura
+
+
+ 16 hexadecimal characters
+
+ Integrated address
@@ -783,11 +826,6 @@
Payment IDID Pagamento
-
-
- 16 or 64 hexadecimal characters
-
-
@@ -858,24 +896,16 @@
Settings
-
- Click button to show seed
- Clicca il bottone per mostrare il seed
+ Clicca il bottone per mostrare il seed
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
+ ErrorErrore
-
+ Wrong password
@@ -888,126 +918,136 @@
E' veramente importante che ti salvi queste parole in quanto sono l'unico backup che serve per il tuo portafoglio.
-
+ Show seedMostra seed
-
+
+ Show status
+
+
+
+ Daemon address
-
+ Manage wallet
-
+ Close wallet
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Manage daemon
-
+ Start daemon
-
+ Stop daemon
-
- Show log
-
-
-
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ Password
+
+
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon log
+
+
+ Wallet mnemonic seed
+
+ Daemon adressIndirizzo processo
-
+ Hostname / IP
-
+ PortPorta
-
+ SaveSalva
@@ -1053,7 +1093,24 @@
- SIGN
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
@@ -1062,12 +1119,6 @@
Or file:
-
-
-
- SELECT
-
- Filename with message to sign
@@ -1092,9 +1143,8 @@
-
-
- VERIFY
+
+ Please choose a file to verify
@@ -1111,12 +1161,12 @@
StandardDialog
-
+ Ok
-
+ Cancel
@@ -1127,31 +1177,39 @@
LOWBASSA
+
+ MEDIUM
+ MEDIA
+
+
+ HIGH
+ ALTA
+
- NORMAL
+ Normal
- MEDIUM
- MEDIA
+ Medium
+
- HIGH
- ALTA
+ High
+ Transfer
-
+ AmountQuantità
-
+ Transaction priorityPriorità Transazione
@@ -1185,220 +1243,246 @@
-
- LOW (x1 fee)
-
-
-
-
- MEDIUM (x20 fee)
-
-
-
-
- HIGH (x166 fee)
-
-
-
-
+ Transaction cost
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
-
+ Wallet is not connected to daemon.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon
-
+ Waiting on daemon synchronization to finish
-
+ Payment ID <font size='2'>( Optional )</font>ID Pagamento <font size='2'>( Opzionale )</font>
-
+ OpenAlias error
-
- Privacy level (ring size %1)
+
+ Privacy level (ringsize %1)
-
- ALL
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
-
- QRCODE
+
+ all
-
- RESOLVE
+
+ Low (x1 fee)
-
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ 16 or 64 hexadecimal characters
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
-
+
+ Send
+
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ ErrorErrore
-
+ Error:
-
-
+
+ InformationInformazioni
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount: Totale:
-
+
Fee: Commissione:
-
+
-Ring size:
+Ringsize:
-
+ ConfirmationConferma
-
+ Can't submit transaction:
-
+ Money sent successfullyDenaro inviato correttamente
@@ -1407,19 +1491,8 @@ Ring size:
descrizione <font size='2'>( Una descrizione opzionale che sarà salvata nella tua rubrica )</font>
- SEND
- INVIA
-
-
-
- Advanced
-
-
-
-
- SWEEP UNMIXABLE
-
+ INVIA
@@ -1469,6 +1542,11 @@ Ring size:
Paste tx key
+
+
+ Check
+
+ Transaction key
@@ -1479,11 +1557,6 @@ Ring size:
If a payment had several transactions then each must be checked and the results combined.
-
-
- CHECK
-
- WizardConfigure
@@ -1530,7 +1603,7 @@ Ring size:
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1550,11 +1623,6 @@ Ring size:
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1632,59 +1700,64 @@ Ring size:
<b>Ripristino: </b>
-
-
-
+
+
+ Enabled
-
-
-
+
+
+ Disabled
-
+ Language
-
+ Wallet name
-
+ Backup seed
-
+ Wallet path
-
+ Daemon address
-
+ TestnetTestnet
-
+ Restore heightRipristino
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ An overview of your Monero configuration is below:Riassunto delle tue configurazioni:
@@ -1702,43 +1775,43 @@ Ring size:
WizardMain
-
+ A wallet with same name already exists. Please change wallet name
-
+ Non-ASCII characters are not allowed in wallet path or account name
-
+ USE MONEROUSA MONERO
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ ErrorErrore
-
+ Abort
@@ -1758,47 +1831,47 @@ Ring size:
Ripristino
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored inIl tuo portafoglio è salvato in
-
+ Please choose a directorySeleziona una cartella
@@ -1827,27 +1900,27 @@ Ring size:
WizardOptions
-
+ Welcome to Monero!Benvenuto in Monero!
-
+ Please select one of the following options:Seleziona una delle seguenti opzioni:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1873,7 +1946,7 @@ Ring size:
Imposta l'indirizzo del processo qui sotto.
-
+ TestnetTestnet
@@ -1903,13 +1976,13 @@ Ring size:
Conferma Password
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1918,7 +1991,7 @@ Ring size:
WizardPasswordUI
-
+ PasswordPassword
@@ -1942,26 +2015,25 @@ Ring size:
Please enter your 25 word private keyInserisci le tue 25 parole private
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
- Welcome
- Benvenuto
+ Benvenuto
-
+
+ Welcome to Monero!
+ Benvenuto in Monero!
+
+
+ Please choose a language and regional format.Seleziona una lingua e un formato regionale.
@@ -1969,14 +2041,14 @@ Ring size:
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorErrore
@@ -1985,93 +2057,135 @@ Ring size:
Sincronizzazione blocchi %1 / %2
-
-
+
+ Please confirm transaction:
-
-
+
+
Amount:
-
+
Number of transactions:
-
+
Description:
-
+ Amount is wrong: expected number from %1 to %2La quantità è sbagliata: à previsto un numero tra l'%1 e il %2
-
-
+
+ Can't create transaction: Impossibile creare la transazione:
-
+ Couldn't open wallet:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balanceTotale sbloccato
-
+
+ Unlocked balance (waiting for block)
+
+
+
+ Waiting for daemon to start...
-
+ Waiting for daemon to stop...
-
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+ Can't create transaction: Wrong daemon version:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ ConfirmationConferma
-
+
+
+
+Ringsize:
+
+
+
+ This address received %1 monero, with %2 confirmation(s).
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+ Please confirm transaction:
@@ -2079,13 +2193,13 @@ Description: Conferma la transazione:
-
+
Address: Indirizzo:
-
+
Payment ID: ID Pagamento:
@@ -2096,31 +2210,24 @@ Amount:
Totale:
-
-
+
+
Fee: Commissione:
-
-
-
-Ring size:
-
-
-
-
+ insufficient funds. Unlocked balance: %1
-
+ Couldn't send the money: Impossibile inviare denaro:
-
+ InformationInformazioni
@@ -2129,57 +2236,57 @@ Ring size:
Denaro inviato correttamente
-
+ Please wait...Attendi...
-
+ Program setup wizardImpostazioni Programma
-
+ Money sent successfully: %1 transaction(s)
-
+ Transaction saved to file: %1
-
+ Payment check
-
+ This address received %1 monero, but the transaction is not yet mined
-
+ This address received nothing
-
+ Balance (syncing)
-
+ BalanceTotale
-
+ Monero
-
+ send to the same destinationmanda alla stessa destinazione
diff --git a/translations/monero-core_ja.ts b/translations/monero-core_ja.ts
index baed599a..70a8d306 100644
--- a/translations/monero-core_ja.ts
+++ b/translations/monero-core_ja.ts
@@ -58,6 +58,11 @@
Give this entry a name or description
+
+
+ Add
+
+ Error
@@ -82,9 +87,8 @@
説明 <font size='2'>(ローカルなデータベース)</font>
- ADD
- 新規
+ 新規Payment ID
@@ -167,28 +171,18 @@
DaemonManagerDialog
-
- Daemon doesn't appear to be running
+
+ Starting Monero daemon in %1 seconds
-
- Start daemon
+
+ Start daemon (%1)
-
- Cancel
-
-
-
-
- Daemon startup flags
-
-
-
-
- (optional)
+
+ Use custom settings
@@ -308,8 +302,12 @@
+ Filter
+
+
+ FILTER
- フィルタ
+ フィルタ
@@ -542,105 +540,119 @@
残高
-
+
+ Unlocked Balance
+
+
+ Unlocked Balance:
- ロック解除された残高
+ ロック解除された残高Mining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -648,27 +660,32 @@
NetworkStatusItem
-
+ Network statusネットワークの状態
-
+ Connected接続されました
-
+
+ Synchronizing
+
+
+
+ Wrong version
-
+ Disconnected接続されていません
-
+ Invalid connection status
@@ -686,12 +703,12 @@
-
+ Cancel
-
+ Ok
@@ -699,30 +716,51 @@
PrivacyLevelSmall
- LOW
- 低
+ 低
- MEDIUM
- 中
+ 中
- HIGH
- 高
+ 高
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+ ProgressBar
- Synchronizing blocks %1/%2
- ブロックの同期中 %1/%2
+ ブロックの同期中 %1/%2
-
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocksブロックの同期中
@@ -791,7 +829,7 @@
- 16 or 64 hexadecimal characters
+ 16 hexadecimal characters
@@ -894,17 +932,15 @@
Settings
-
- Click button to show seed
- シードを表示するにはボタンをクリック
+ シードを表示するにはボタンをクリックMnemonic seed: ニーモニックシード:
-
+ Show seedシードを表示
@@ -913,133 +949,137 @@
デーモンのアドレス
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
+ Manage wallet
-
+ Close wallet
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Manage daemon
-
+ Start daemon
-
+ Stop daemon
-
- Show log
+
+ Show status
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+ Daemon address
-
+ Hostname / IPホストネーム / IP
-
+ Portポート
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ パスワード
+
+
+ Save保存
-
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon log
-
+
+ Wallet mnemonic seed
+
+
+
+ Errorエラー
-
+ Wrong password
@@ -1085,7 +1125,24 @@
- SIGN
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
@@ -1094,12 +1151,6 @@
Or file:
-
-
-
- SELECT
-
- Filename with message to sign
@@ -1124,9 +1175,8 @@
-
-
- VERIFY
+
+ Please choose a file to verify
@@ -1143,12 +1193,12 @@
StandardDialog
-
+ Ok
-
+ Cancel
@@ -1159,20 +1209,28 @@
LOW低
+
+ MEDIUM
+ 中
+
+
+ HIGH
+ 高
+
- NORMAL
+ Normal
- MEDIUM
- 中
+ Medium
+
- HIGH
- 高
+ High
+
@@ -1185,22 +1243,17 @@
Transfer
-
+ OpenAlias error
-
- Privacy level (ring size %1)
-
-
-
-
+ Amount金額
-
+ Transaction priority取引のプライオリティ
@@ -1210,217 +1263,238 @@
-
- ALL
-
-
-
-
- LOW (x1 fee)
-
-
-
-
- MEDIUM (x20 fee)
-
-
-
-
- HIGH (x166 fee)
-
-
-
-
+ Transaction cost
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
-
- QRCODE
-
-
-
-
- RESOLVE
-
-
-
-
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ 16 or 64 hexadecimal characters
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
-
- Advanced
+
+ Privacy level (ringsize %1)
-
- SWEEP UNMIXABLE
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
-
+
+ all
+
+
+
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ Send
+
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ Errorエラー
-
+ Error:
-
-
+
+ Information情報
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount:
金額:
-
+
Fee:
手数料:
-
+
-Ring size:
+Ringsize:
-
+ Confirmation確認
-
+ Can't submit transaction:
-
+ Money sent successfully送金に成功しました
-
+ Wallet is not connected to daemon.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon
-
+ Waiting on daemon synchronization to finish
@@ -1453,7 +1527,7 @@ Please upgrade or connect to another daemon
<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> アドレス <font size='2'> (タイプするか、</font> <a href='#'>アドレス帳</a><font size='2'> から選択してください )</font>
-
+ Payment ID <font size='2'>( Optional )</font>ペイメントID <font size='2'>( オプション )</font>
@@ -1462,9 +1536,8 @@ Please upgrade or connect to another daemon
説明 <font size='2'>( オプション: 何か記述するとアドレス帳に保存されます )</font>
- SEND
- 送金
+ 送金
@@ -1526,7 +1599,7 @@ Please upgrade or connect to another daemon
- CHECK
+ Check
@@ -1575,7 +1648,7 @@ Please upgrade or connect to another daemon
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1595,11 +1668,6 @@ Please upgrade or connect to another daemon
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1685,59 +1753,64 @@ Please upgrade or connect to another daemon
準備が完了しました!
-
-
-
+
+
+ Enabled
-
-
-
+
+
+ Disabled
-
+ Language
-
+ Wallet name
-
+ Backup seed
-
+ Wallet path
-
+ Daemon address
-
+ Testnetテストネット
-
+ Restore height復元するブロックの高さ
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
@@ -1747,43 +1820,43 @@ Please upgrade or connect to another daemon
WizardMain
-
+ A wallet with same name already exists. Please change wallet name
-
+ Non-ASCII characters are not allowed in wallet path or account name
-
+ USE MONEROモネロを使う
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ Errorエラー
-
+ Abort
@@ -1803,47 +1876,47 @@ Please upgrade or connect to another daemon
復元するブロックの高さ
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored inウォレットが保存される場所
-
+ Please choose a directoryディレクトリを選択してください
@@ -1868,27 +1941,27 @@ Please upgrade or connect to another daemon
WizardOptions
-
+ Welcome to Monero!モネロへようこそ!
-
+ Please select one of the following options:以下のオプションの中から選択してください:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1910,7 +1983,7 @@ Please upgrade or connect to another daemon
デーモンのアドレスを下記に指定してください
-
+ Testnetテストネット
@@ -1940,13 +2013,13 @@ Please upgrade or connect to another daemon
パスワードの確認
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1955,7 +2028,7 @@ Please upgrade or connect to another daemon
WizardPasswordUI
-
+ Passwordパスワード
@@ -1979,26 +2052,25 @@ Please upgrade or connect to another daemon
Please enter your 25 word private key25個の秘密のキーワードを入力してください
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
- Welcome
- ようこそ
+ ようこそ
-
+
+ Welcome to Monero!
+ モネロへようこそ!
+
+
+ Please choose a language and regional format.言語と地域フォーマットを選択してください。
@@ -2006,19 +2078,19 @@ Please upgrade or connect to another daemon
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Errorエラー
-
+ Couldn't open wallet: ウォレットを開けませんでした:
@@ -2027,110 +2099,152 @@ Please upgrade or connect to another daemon
ブロックを同期中 %1 / %2
-
+ Amount is wrong: expected number from %1 to %2金額が不正です: %1から%2の範囲内としてください
-
-
+
+ Can't create transaction: 取引データを作成できません:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balanceロック解除された残高
-
+
+ Unlocked balance (waiting for block)
+
+
+
+ Waiting for daemon to start...
-
+ Waiting for daemon to stop...
-
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+ Can't create transaction: Wrong daemon version:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ Confirmation確認
-
-
+
+ Please confirm transaction:
-
-
+
+
Amount:
-
+
+
+
+Ringsize:
+
+
+
+ Transaction saved to file: %1
-
+ Money sent successfully: %1 transaction(s)
-
+ Payment check
-
+ This address received %1 monero, but the transaction is not yet mined
-
+ This address received %1 monero, with %2 confirmation(s).
-
+ This address received nothing
-
+ Balance (syncing)
-
+ Balance残高
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+ Please confirm transaction:
@@ -2140,14 +2254,14 @@ Amount:
-
+
Address:
アドレス:
-
+
Payment ID:
@@ -2160,45 +2274,38 @@ Amount:
金額:
-
-
+
+
Fee:
手数料:
-
-
-
-Ring size:
-
-
-
-
+
Number of transactions:
-
+
Description:
-
+ insufficient funds. Unlocked balance: %1
-
+ Couldn't send the money: 送金できませんでした
-
+ Information情報
@@ -2207,12 +2314,12 @@ Description:
送金に成功しました
-
+ Please wait...お待ちください...
-
+ Moneroモネロ
@@ -2221,7 +2328,7 @@ Description:
ウォレットを初期化しています...
-
+ Program setup wizardプログラムセットアップウィザード
@@ -2230,7 +2337,7 @@ Description:
モネロ - 寄付
-
+ send to the same destination同じ宛先に送金する
diff --git a/translations/monero-core_nl.ts b/translations/monero-core_nl.ts
index 25df8128..a82a3eba 100644
--- a/translations/monero-core_nl.ts
+++ b/translations/monero-core_nl.ts
@@ -4,55 +4,95 @@
AddressBook
-
+ Add new entryVoeg nieuw contact toe
-
-
+ AddressAdres
-
+ <b>Tip tekst test</b>
-
+
+ QRCODE
+ QRCODE
+
+
+
+ 4...
+ 4...
+
+
+ Payment ID <font size='2'>(Optional)</font>Betaal-ID <font size='2'>(Optioneel)</font>
-
+ <b>Payment ID</b><br/><br/>A unique user name used in<br/>the address book. It is not a<br/>transfer of information sent<br/>during the transfer<b>Betaal-ID</b><br/><br/>Een unieke gebruikersnaam dat gebruikt wordt in<br/>het adresboek. Het wordt niet gebruik voor<br/>het verzenden van informatie
-
+
+ Paste 64 hexadecimal characters
+ Plak 64 hexadecimale karakters
+
+
+
+ Description <font size='2'>(Optional)</font>
+ Omschrijving <font size='2'>(Optioneell)</font>
+
+
+ <b>Tip test test</b><br/><br/>test line 2
-
+
+ Give this entry a name or description
+ Geef deze vermelding een naam of omschrijving
+
+
+
+ Add
+ Toevoegen
+
+
+
+ Error
+ Fout
+
+
+
+ Invalid address
+ Ongeldig adres
+
+
+
+ Can't create entry
+ Kan vermelding niet opslaan
+
+ Description <font size='2'>(Local database)</font>
- Beschrijving <font size='2'>(Lokale database)</font>
+ Beschrijving <font size='2'>(Lokale database)</font>
- ADD
- NIEUW
+ NIEUW
- Payment ID
- Betaal-ID
+ Betaal-ID
- Description
- Beschrijving
+ Beschrijving
@@ -91,22 +131,47 @@
+
+ DaemonConsole
+
+
+ Close
+ Afsluiten
+
+
+
+ command + enter (e.g help)
+
+
+DaemonManagerDialog
- Daemon doesn't appear to be running
- Node lijkt niet actief te zijn
+ Node lijkt niet actief te zijn
- Start daemon
- Node starten
+ Node starten
- Cancel
- Annuleren
+ Annuleren
+
+
+
+ Starting Monero daemon in %1 seconds
+ Monero node wordt gestart in %1 seconde(n)
+
+
+
+ Start daemon (%1)
+ Start node (%1)
+
+
+
+ Use custom settings
+ Gebruik aangepaste instellingen
@@ -187,6 +252,11 @@
<b>Total amount of selected payments</b><b>Totaalbedrag van geselecteerde betalingen</b>
+
+
+ Filter
+ Filteren
+ Incremental searchIncrementeel zoeken
@@ -216,9 +286,8 @@
Naar
- FILTER
- FILTEREN
+ FILTEREN
@@ -243,58 +312,73 @@
HistoryTable
-
+ No more resultsGeen verdere resultaten
-
-
+
+ Payment ID:Betaal-ID:
-
+ Tx ID:Transactie-ID:
-
+ Tx key:Transactiesleutel:
-
+ Tx note:Transactienotitie:
-
+ Destinations:Bestemmingen:
-
+ DetailsDetails
-
+ BlockHeight:Blokhoogte:
-
+
+ (%1/10 confirmations)
+ (%1/10 bevestigingen)
+
+
+
+ UNCONFIRMED
+ ONBEVESTIGD
+
+
+
+ PENDING
+ IN AFWACHTING
+
+
+ DateDatum
-
+ FeeVergoeding
-
+ AmountBedrag
@@ -302,119 +386,279 @@
LeftPanel
-
+ BalanceSaldo
-
+ Test tip 1<br/><br/>line 2
-
+ Unlocked balanceBeschikbaar saldo
-
+ Test tip 2<br/><br/>line 2
-
+ SendVerzenden
-
- T
-
-
-
-
+ ReceiveOntvangen
-
+ R
-
+ R
- Verify payment
- Betaling controleren
+ Betaling controleren
-
+ K
-
+ K
-
+ HistoryGeschiedenis
-
+
+ Address book
+ Adresboek
+
+
+
+ B
+ B
+
+
+ H
+ H
+
+
+
+ Advanced
+ Geavanceerd
+
+
+
+ D
+ D
+
+
+
+ Mining
+ Wat is een juiste vertaling voor minen/mining? Winning misschien, zoals het winnen van delfstoffen. Of ontginning/ontginnen?
-
+
+ M
+ M
+
+
+
+ Check payment
+ Betaling controleren
+
+
+ Sign/verifySigneren/verifiëren
-
+
+ I
+ I
+
+
+ SettingsInstellingen
-
-
+
+ E
+ E
+
+
+ S
-
+ SMiddlePanel
- Balance:
- Saldo:
+ Saldo:
- Unlocked Balance:
- Beschikbaar Saldo:
+ Beschikbaar Saldo:
+
+
+
+ Balance
+ Saldo
+
+
+
+ Unlocked Balance
+ Beschikbaar Saldo
+
+
+
+ Mining
+
+
+ Solo mining
+
+
+
+
+ (only available for local daemons)
+
+
+
+
+ Mining helps the Monero network build resilience.<br>
+
+
+
+
+ The more mining is done, the harder it is to attack the network.<br>
+
+
+
+
+ Mining also gives you a small chance to earn some Monero.<br>
+
+
+
+
+ Your computer will search for Monero block solutions.<br>
+
+
+
+
+ If you find a block, you will get the associated reward.<br>
+
+
+
+
+ CPU threads
+
+
+
+
+ (optional)
+ (optioneel)
+
+
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+
+ Manage miner
+
+
+
+
+ Start mining
+
+
+
+
+ Error starting mining
+
+
+
+
+ Couldn't start mining.<br>
+
+
+
+
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
+
+
+
+
+ Stop mining
+
+
+
+
+ Status: not mining
+
+
+
+
+ Mining at %1 H/s
+
+
+
+
+ Not mining
+
+
+
+
+ Status:
+ Status:NetworkStatusItem
-
+ Network statusNetwerkstatus
-
+ ConnectedVerbonden
-
+
+ Synchronizing
+ Synchroniseren
+
+
+ Wrong versionOnjuiste versie
-
+ DisconnectedNiet verbonden
-
+ Invalid connection statusOngeldige verbindingsstatus
@@ -422,22 +666,22 @@
PasswordDialog
-
+ Please enter wallet passwordPortemonnee wachtwoord invullen
-
+ Please enter wallet password for:<br>Portemonnee wachtwoord invullen voor:<br>
-
+ CancelAnnuleren
-
+ OkOk
@@ -445,30 +689,51 @@
PrivacyLevelSmall
- LOW
- LAAG
+ LAAG
- MEDIUM
- GEMIDDELD
+ GEMIDDELD
- HIGH
- HOOG
+ HOOG
+
+
+
+ Low
+ Laag
+
+
+
+ Medium
+ Gemiddeld
+
+
+
+ High
+ HoogProgressBar
- Synchronizing blocks %1/%2
- Blokken synchroniseren %1/%2
+ Blokken synchroniseren %1/%2
-
+
+ Establishing connection...
+ Bezig met verbinding te maken...
+
+
+
+ Blocks remaining: %1
+ Blokken resterend: %1
+
+
+ Synchronizing blocksBlokken synchroniseren
@@ -536,24 +801,43 @@
Alleen-lezen portomonnee adres is hier weergegeven
-
+
+ 16 hexadecimal characters
+ 16 hexadecimale karakters
+
+
+ Integrated addressGeïntegreerd adres
-
+ ReadOnly wallet integrated address displayed here
- AlleenLezen portemonnee geïntegreerd adres wordt hier weergegeven
+ Alleen-lezen portemonnee geïntegreerd adres wordt hier weergegeven
-
+
+ Save QrCode
+ QR-Code opslaan
+
+
+
+ Failed to save QrCode to
+ Opslaan van QR-Code is mislukt
+
+
+
+ Save As
+ Opslaan als
+
+
+ Payment IDBetaal-ID
- 16 or 64 hexadecimal characters
- 16 of 64 hexadecimale karakters
+ 16 of 64 hexadecimale karakters
@@ -577,7 +861,7 @@
<p><font size='+2'>Dit is een simpele verkoop tracker:</font></p><p>Klik hier om een willekeurig betaal-ID te maken voor een nieuwe klant</p> <p>Laat je klant de QR code scannen om een betaling uit te voeren (als die klant over software beschikt die QR codes kan scannen).</p><p>Deze pagina zal automatisch de blockchain en transactiepoel controleren voor inkomende transacties met behulp van deze QR code. Als je een bedrag invuld, zal er ook gecontroleerd worden of het complete bedrag ontvangen is.</p>Het is aan jou om eventuele onbevestigde transacties te accepter of niet. Het is zeer waarschijnlijk dat deze op korte termijn bevestigd zullen zijn, maar er is altijd een mogelijkheid dat dit niet zo is. Het is dus bij grote bedragen aan te raden, te wachten op één of meer bevestigingen.</p>
-
+ GenerateGenereer
@@ -621,96 +905,165 @@
Settings
-
- Click button to show seed
- Klik op de knop om de hersteltekst te tonen
+ Klik op de knop om de hersteltekst te tonen
-
+ ErrorFout
-
+ Wrong passwordOnjuist wachtwoord
- Mnemonic seed:
- Hersteltekst:
+ Hersteltekst:
- It is very important to write it down as this is the only backup you will need for your wallet.
- Het is erg belangrijk om dit op te schrijven, omdat dit de enige back-up is die u heeft voor uw portemonnee.
+ Het is erg belangrijk om dit op te schrijven, omdat dit de enige back-up is die u heeft voor uw portemonnee.
-
+ Show seedToon hersteltekst
-
+ Daemon addressNode-adres
-
+ Manage walletPortemonnee beheren
- Close current wallet and open wizard
- Sluit huidige portemonnee en open de configuratie-assistent
+ Sluit huidige portemonnee en open de configuratie-assistent
-
+ Close walletPortemonnee sluiten
-
+
+ Create view only wallet
+ Maak een alleen-lezen portomonnee aan
+
+
+ Manage daemonNode beheren
-
+ Start daemon
- Start node
+ Start lokale node
-
+ Stop daemon
- Stop node
+ Stop lokale node
- Show log
- Bekijk log
+ Bekijk log
-
+ Daemon logNode log
-
+ Hostname / IPHostnaam / IP
-
+
+ Show status
+ Bekijk status
+
+
+
+ Daemon startup flags
+ Node start argumenten
+
+
+
+ (optional)
+ (optioneel)
+
+
+ PortPoort
-
+
+ Login (optional)
+ Loginnaam (optioneel)
+
+
+
+ Username
+ Gebruikersnaam
+
+
+
+ Password
+ Wachtwoord
+
+
+ SaveOpslaan
+
+
+ Layout settings
+ Opmaak instellingen
+
+
+
+ Custom decorations
+ Aangepaste decoraties
+
+
+
+ Log level
+ Log niveau
+
+
+
+ (e.g. *:WARNING,net.p2p:DEBUG)
+ (b.v. *:WARNING,net.p2p:DEBUG)
+
+
+
+ Version
+ Versie
+
+
+
+ GUI version:
+ GUI versie:
+
+
+
+ Embedded Monero version:
+ Ingebouwde Monero versie:
+
+
+
+ Wallet mnemonic seed
+ Portomonnee hersteltekst
+ Sign
@@ -753,8 +1106,39 @@
+ Sign
+ Signeer
+
+
+
+ Please choose a file to sign
+ Kies een bestand om te signeren
+
+
+
+
+ Select
+ Selecteer
+
+
+
+
+ Verify
+ Verifiëer
+
+
+
+ Please choose a file to verify
+ Kies een bestand om te verifiëren
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Handtekening adres <font size='2'> ( Vul in of slecteer uit het </font> <a href='#'>Addresboek</a><font size='2'> )</font>
+
+ SIGN
- SIGNEREN
+ SIGNEREN
@@ -763,10 +1147,8 @@
Of bestand:
-
- SELECT
- SELECTEER
+ SELECTEER
@@ -792,10 +1174,8 @@
Het te verifiëren bericht
-
- VERIFY
- VERIFIËREN
+ VERIFIËREN
@@ -803,20 +1183,19 @@
Bestand met bericht om te verifiëren
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Handtekening adres <font size='2'> ( Vul in of selecteer uit het </font> <a href='#'>Adres</a><font size='2'>boek )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Handtekening adres <font size='2'> ( Vul in of selecteer uit het </font> <a href='#'>Adres</a><font size='2'>boek )</font>StandardDialog
-
+ OkOk
-
+ CancelAnnuleren
@@ -824,30 +1203,42 @@
TickDelegate
- LOW
- LAAG
+ LAAG
+
+
+ MEDIUM
+ GEMIDDELD
+
+
+ HIGH
+ HOOG
+
+
+
+ Normal
+ Normaal
- MEDIUM
- GEMIDDELD
+ Medium
+ Gemiddeld
- HIGH
- HOOG
+ High
+ HoogTransfer
-
+ AmountBedrag
-
+ Transaction priorityTransactie prioriteit
@@ -869,60 +1260,278 @@
- or ALL
- of ALLES
+ of ALLES
- LOW (x1 fee)
- LAAG (x1 vergoeding)
+ LAAG (x1 vergoeding)
- MEDIUM (x20 fee)
- GEMIDDELD (x20 vergoeding)
+ GEMIDDELD (x20 vergoeding)
- HIGH (x166 fee)
- HOOG (x166 vergoeding)
+ HOOG (x166 vergoeding)
- Privacy level
- Privacy niveau
+ Privacy niveau
-
+ Transaction costTransactiekosten
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adres <font size='2'> ( Vul in of selecteer uit het </font> <a href='#'>Addresboek</a><font size='2'> )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adres <font size='2'> ( Vul in of selecteer uit het </font> <a href='#'>Addresboek</a><font size='2'> )</font>
- Description <font size='2'>( Optional - saved to local wallet history )</font>
- Omschrijving <font size='2'>( Optioneel - opgeslagen in de portomonnee historie )</font>
+ Omschrijving <font size='2'>( Optioneel - opgeslagen in de portomonnee historie )</font>
-
-
+
+ OpenAlias error
+ OpenAlias fout
+
+
+
+ Privacy level (ringsize %1)
+ Is 'vertrouwenscirkel grootte' een betere vertaling?
+ Privacy niveau (ring grootte %1)
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start lokale node</a><font size='2'>)</font>
+
+
+
+ all
+ alles
+
+
+
+ Low (x1 fee)
+ Laag (x1 vergoeding)
+
+
+
+ Medium (x20 fee)
+ Gemiddeld (x20 vergoeding)
+
+
+
+ High (x166 fee)
+ Hoog (x166 vergoeding)
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adres <font size='2'> ( Vul in of selecteer uit het </font> <a href='#'>Addresboek</a><font size='2'> )</font>
+
+
+
+ QR Code
+ QR-Code
+
+
+
+ Resolve
+ Oplossen
+
+
+
+ No valid address found at this OpenAlias address
+ Geen geldig adres gevonden onder dit OpenAlias adres
+
+
+
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
+ Adres gevonden, maar DNSSEC handtekeningen konden niet geverifiëerd worden, dus het adres kan mogelijk gespoofed en dus ongeldig zijn
+
+
+
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
+ Geen geldig adres gevonden onder het opgegeven OpenAlias adres, en de DNSSEC handtekeningen konden niet geverifiëerd worden, dus het adres kan mogelijk gespoofed en dus ongeldig zijn
+
+
+
+
+ Internal error
+ Interne fout
+
+
+
+ No address found
+ Geen adres gevonden
+
+
+
+ Description <font size='2'>( Optional )</font>
+ Omschrijving <font size='2'>( Optioneel )</font>
+
+
+
+ Saved to local wallet history
+ Wordt opgeslagen in de lokale portomonnee historie
+
+
+
+ Send
+ Verzenden
+
+
+
+ Show advanced options
+ Laat geavanceerde opties zien
+
+
+ Privacy level (ringsize 5)
+ Privacy niveau (ring grootte 5)
+
+
+
+ Sweep Unmixable
+ Lastig te vertalen deze. Misschien heeft iemand anders een beter idee dan, "Schoonvegen van niet-te-mengen posten"
+
+
+
+
+ create tx file
+
+
+
+
+ sign tx file
+
+
+
+
+ submit tx file
+
+
+
+
+ Rescan spent
+ Doorzoek uitgaven
+
+
+
+
+
+ Error
+ Fout
+
+
+
+ Error:
+ Fout:
+
+
+
+
+ Information
+ Informatie
+
+
+
+ Sucessfully rescanned spent outputs
+ Met success the uitgaven doorzocht
+
+
+
+
+ Please choose a file
+ Kies een bestand
+
+
+
+ Can't load unsigned transaction:
+ Het laden van de niet-ondertekende transactie, is mislukt:
+
+
+
+
+Number of transactions:
+
+Aantal transacties:
+
+
+
+
+Transaction #%1
+
+Transactie #%1
+
+
+
+
+Recipient:
+
+Ontvanger:
+
+
+
+
+payment ID:
+
+Betaal-ID:
+
+
+
+
+Amount:
+
+Bedrag:
+
+
+
+
+Fee:
+
+Vergoeding:
+
+
+
+
+Ringsize:
+
+Ringgrootte:
+
+
+
+ Confirmation
+ Bevestiging
+
+
+
+ Can't submit transaction:
+ Kan transactie niet insturen:
+
+
+
+ Money sent successfully
+ Geld is succesvol verstuurd
+
+
+
+ Wallet is not connected to daemon.Portomonnee is niet verbonden met de node.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemonVerbonden node is niet compatible met de GUI.
Graag updaten of verbind met een andere node
-
+ Waiting on daemon synchronization to finishWachten totdat de synchronisatie met de node compleet is
@@ -931,12 +1540,12 @@ Graag updaten of verbind met een andere node
<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adres <font size='2'> (Vul in of selecteer uit het </font> <a href='#'>Adresboek</a><font size='2'> kiezen )</font>
-
+ Payment ID <font size='2'>( Optional )</font>Betaal-ID <font size='2'>( Optioneel )</font>
-
+ 16 or 64 hexadecimal characters16 of 64 hexadecimale karakters
@@ -945,14 +1554,12 @@ Graag updaten of verbind met een andere node
Beschrijving <font size='2'>(Een optionele beschrijving die opgeslagen wordt in het lokale adresboek)</font>
- SEND
- VERZENDEN
+ VERZENDEN
- SWEEP UNMIXABLE
- SCHOONVEGEN VAN NIET TE MENGEN POSTEN
+ SCHOONVEGEN VAN NIET TE MENGEN POSTEN
@@ -978,8 +1585,12 @@ Graag updaten of verbind met een andere node
- de geheime transactie sleutel, verstrekt door de verzender
- If a payment had several transactions then each must must be checked and the results combined.
+ Als een betaling meerdere transacties had, dan moet elk afzonderlijk gecontroleerd worden en het resultaat opgeteld worden.
+
+
+
+ If a payment had several transactions then each must be checked and the results combined.Als een betaling meerdere transacties had, dan moet elk afzonderlijk gecontroleerd worden en het resultaat opgeteld worden.
@@ -1007,15 +1618,19 @@ Graag updaten of verbind met een andere node
Paste tx keyPlak een transactiesleutel
+
+
+ Check
+ Controleren
+ Transaction keyTransactie sleutel
- CHECK
- CONTROLE
+ CONTROLE
@@ -1060,17 +1675,28 @@ Graag updaten of verbind met een andere node
Mining beveiligt het Monero netwerk en u ontvangt ook een kleine beloning voor het gedane werk. Deze optie laat Monero minen als uw computer aanstaan en niets aan het doen is. Het stopt met minen als u weer gebruikt maakt van uw computer.
+
+ WizardCreateViewOnlyWallet
+
+
+ Create view only wallet
+ Maak een alleen-lezen portomonnee aan
+
+WizardCreateWallet
- A new wallet has been created for you
- Een nieuwe portemonnee is voor u aangemaakt
+ Een nieuwe portemonnee is voor u aangemaakt
- This is the 25 word mnemonic for your wallet
- Dit is de hersteltekst bestaande uit 25 woorden voor uw portemonnee
+ Dit is de hersteltekst bestaande uit 25 woorden voor uw portemonnee
+
+
+
+ Create a new wallet
+ Maak een nieuwe portomonnee aan
@@ -1109,58 +1735,75 @@ Graag updaten of verbind met een andere node
WizardFinish
-
-
-
+
+
+ EnabledIngeschakeld
-
-
-
+
+
+ DisabledUitgeschakeld
-
+ LanguageTaal
- Account name
- Portemonnee naam
+ Portemonnee naam
- Seed
+ Hersteltekst
+
+
+
+ Wallet name
+ Portomonnee naam
+
+
+
+ Backup seedHersteltekst
-
+ Wallet pathPortemonnee locatie
-
+ Daemon addressNode adres
-
+ TestnetTestnet
-
+ Restore heightHerstelpunt (blokhoogte)
-
+
+ New wallet details:
+ Nieuwe portomonnee gegevens:
+
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+ Vergeet u hersteltekst niet op te schrijven. U kunt u hersteltekst bekijken en instellingen aanpassen op de instellingen pagina.
+
+ An overview of your Monero configuration is below:
- Een overzicht van uw Monero configuratie staat hieronder:
+ Een overzicht van uw Monero configuratie staat hieronder:
@@ -1175,44 +1818,104 @@ Graag updaten of verbind met een andere node
WizardMain
-
+ A wallet with same name already exists. Please change wallet nameEen portemonnee met dezelfde naam bestaat reeds. Verander alstublieft de naam van uw portemonnee
-
+ Non-ASCII characters are not allowed in wallet path or account nameNiet-ASCII tekens zijn niet toegestaan in het portomonnee pad of portemonnee naam
-
+ USE MONEROGEBRUIK MONERO
+
+
+ Create wallet
+ Portomonnee maken
+
+
+
+ Success
+ Geslaagd
+
+
+
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
+%1
+ De alleen-lezen portomonnee is aangemaakt. U kunt deze openen door de huidige portomonnee te sluiten, klik vervolgens op "Open een portomonnee vanaf een bestand", en selecteer de alleen-lezen portomonnee in:
+%1
+
+
+
+ Error
+ Fout
+
+
+
+ Abort
+ Afbreken
+ WizardManageWalletUI
- This is the name of your wallet. You can change it to a different name if you’d like:
- Dit is de naam van uw portemonnee. U kunt de naam veranderen mocht u dat willen:
+ Dit is de naam van uw portemonnee. U kunt de naam veranderen mocht u dat willen:My account nameMijn portemonnee naam:
- Restore height
- Herstelpunt (blokhoogte)
+ Herstelpunt (blokhoogte)
-
+
+ Wallet name
+ Portomonnee naam
+
+
+
+ Restore from seed
+ Herstel met behulp van hersteltekst
+
+
+
+ Restore from keys
+ Herstel met behulp van sleutels
+
+
+
+ Account address (public)
+ Portomonnee adres (openbaar)
+
+
+
+ View key (private)
+ Aleen-lezen sleutel (privé)
+
+
+
+ Spend key (private)
+ Bestedings-sleutel (privé)
+
+
+
+ Restore height (optional)
+ Herstelpunt (optioneel)
+
+
+ Your wallet is stored inUw portemonnee is opgeslagen in
-
+ Please choose a directoryKies een locatie
@@ -1224,45 +1927,70 @@ Graag updaten of verbind met een andere node
Het is erg belangrijk om dit op te schrijven omdat dit de enige back-up is die u nodig heeft voor uw portemonnee. Op de volgende pagina wordt gevraagd om de hersteltekst te bevestigen om ervoor te zorgen dat de tekst op de juiste manier is overgenomen.
- It is very important to write it down as this is the only backup you will need for your wallet.
- Het is erg belangrijk om dit op te schrijven omdat dit de enige back-up is die u nodig heeft voor uw portemonnee..
+ Het is erg belangrijk om dit op te schrijven omdat dit de enige back-up is die u nodig heeft voor uw portemonnee..
+
+
+
+ Enter your 25 word mnemonic seed
+ Vul u hersteltekst van 25 woorden in
+
+
+
+ This seed is <b>very</b> important to write down and keep secret. It is all you need to backup and restore your wallet.
+ Deze hersteltekst is <b>zeer</b> belangerijk om veilig op te slaag en privé te houden. Het is het enigste wat u (nodig) heeft om uw portomonnee te backuppen of te herstellen.WizardOptions
-
+ Welcome to Monero!Welkom bij Monero!
-
+ Please select one of the following options:Selecteer alstublieft een van de volgende opties:
-
+
+ Create a new wallet
+ Maak een nieuwe portomonnee aan
+
+
+
+ Restore wallet from keys or mnemonic seed
+ Herstel een portomonnee met behulp van u hersteltekst of sleutels
+
+
+
+ Open a wallet from file
+ Open een portomonnee vanaf een bestand
+
+
+
+ Custom daemon address (optional)
+ Aangepast node-adres (optioneel)
+
+ This is my first time, I want to create a new account
- Dit is mijn eerste keer, ik wil een nieuwe portemonnee aanmaken
+ Dit is mijn eerste keer, ik wil een nieuwe portemonnee aanmaken
- I want to recover my account from my 25 word seed
- Ik wil mijn portemonnee herstellen met de 25 woorden hersteltekst
+ Ik wil mijn portemonnee herstellen met de 25 woorden hersteltekst
- I want to open a wallet from file
- Ik wil een portemonnee openen vanuit een bestand
+ Ik wil een portemonnee openen vanuit een bestand
- Please setup daemon address below.
- Stel hieronder alstublieft het node adres in.
+ Stel hieronder alstublieft het node adres in.
-
+ TestnetTestnet
@@ -1270,29 +1998,50 @@ Graag updaten of verbind met een andere node
WizardPassword
- Now that your wallet has been created, please set a password for the wallet
- Nu dat uw portemonnee is aangemaakt, moet u deze beveiligen met een wachtwoord
+ Nu dat uw portemonnee is aangemaakt, moet u deze beveiligen met een wachtwoord
- Now that your wallet has been restored, please set a password for the wallet
- Nu dat uw portemonnee is aangemaakt, moet u deze beveiligen met een wachtwoord
+ Nu dat uw portemonnee is aangemaakt, moet u deze beveiligen met een wachtwoord
- Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given<br/><br/>
Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.
- Het wachtwoord kan niet hersteld worden, mocht u het wachtwoord vergeten dan moet u uw portemonnee herstellen via de 25 woorden hersteltekst die u zojuist heeft gekregen<br/><br/>
+ Het wachtwoord kan niet hersteld worden, mocht u het wachtwoord vergeten dan moet u uw portemonnee herstellen via de 25 woorden hersteltekst die u zojuist heeft gekregen<br/><br/>
Uw wachtwoord wordt gebruikt om uw portemonnee te openen en acties te bevestigen, dus zorg ervoor dat uw wachtwoord voldoende veilig is.
-
+ Password
+ Wachtwoord
+
+
+ Confirm password
+ Wachtwoord bevestigen
+
+
+
+
+ Give your wallet a password
+ Beveilig u portomonnee met een wachtwoord
+
+
+
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
+ <b>Enter a strong password</b> (using letters, numbers, and/or symbols):
+ Let op: dit wachtwoord kan niet hersteld worden. Als u het wachtwoord vergeet, kan de portomonnee alleen hersteld worden worden met u hersteltekst van 25 woorden.<br/><br/>
+ <b>Vul een sterk wachtwoord in</b> (gebruik letters, cijfers, en/of symbolen):
+
+
+
+ WizardPasswordUI
+
+ PasswordWachtwoord
-
+ Confirm passwordWachtwoord bevestigen
@@ -1300,25 +2049,32 @@ Graag updaten of verbind met een andere node
WizardRecoveryWallet
- We're ready to recover your account
- Uw portemonnee kan hersteld worden
+ Uw portemonnee kan hersteld worden
- Please enter your 25 word private key
- Vult u alstublieft de 25 woorden hersteltekst in
+ Vult u alstublieft de 25 woorden hersteltekst in
+
+
+
+ Restore wallet
+ Portomonnee herstellenWizardWelcome
- Welcome
- Welkom
+ Welkom
-
+
+ Welcome to Monero!
+ Welkom bij Monero!
+
+
+ Please choose a language and regional format.Selecteer alstublieft een taal en regio.
@@ -1326,19 +2082,19 @@ Graag updaten of verbind met een andere node
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorFout
-
+ Couldn't open wallet: Portemonnee kan niet geopend worden:
@@ -1347,29 +2103,30 @@ Graag updaten of verbind met een andere node
Synchroniseren van blok %1 / %2
-
+ Can't create transaction: Wrong daemon version: Transactie kan niet worden aangemaakt: Verkeerde node versie:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
+ Lastig te vertalen, iemand een beter idéé?Er zijn geen, niet te mengen, posten gevonden, die opgeschoond moesten worden
-
-
+
+ Please confirm transaction:
Gelieve de transactie te bevestigen:
-
-
+
+
Amount:
@@ -1378,23 +2135,22 @@ Amount:
Bedrag:
-
Mixin:
-
+
Menging:
-
+
Number of transactions:
Aantal transacties:
-
+
Description:
@@ -1403,66 +2159,90 @@ Description:
Omschrijving:
-
+ Amount is wrong: expected number from %1 to %2Bedrag is verkeerd: aantal tussen %1 en %2 verwacht
-
+ Money sent successfully: %1 transaction(s) Het geld is met success verzonden: %1 transactie(s)
-
+ Payment checkBetaling controleren
-
+ This address received %1 monero, but the transaction is not yet minedDit adres heeft %1 monero ontvangen, maar de transactie is nog niet verwerkt
- This address received %1 monero, with %2 confirmations
- Dit adres heeft %1 monero ontvangen, met %2 bevestigingen
+ Dit adres heeft %1 monero ontvangen, met %2 bevestigingen
-
+ This address received nothingDit adres heeft niets ontvangen
-
-
+
+ Can't create transaction: Transactie kan niet worden aangemaakt:
-
+
+ Unlocked balance (waiting for block)
+ Beschikbaar saldo (wachten op blok)
+
+
+
+ Unlocked balance (~%1 min)
+ Beschikbaar saldo (~%1 min)
+
+
+
+ Unlocked balance
+ Beschikbaar saldo
+
+
+ Waiting for daemon to start...Wachten tot de node gestart is...
-
+ Waiting for daemon to stop...Wachten tot de node gestopt is...
-
-
+
+ Daemon failed to start
+ Het starten van de node is mislukt
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+ Graag u portomonnee en node log controleren op fouten. U kunt ook proberen %1 handmatig te starten.
+
+
+
+ ConfirmationBevestiging
-
+
Address:
Adres:
-
+
Payment ID:
@@ -1475,41 +2255,96 @@ Amount:
Bedrag:
-
-
+
+
Fee:
Vergoeding:
-
- insufficient funds. Unlocked balance: %1
- onvoldoende balans. Beschikbaar saldo: %1
+
+
+
+Ringsize:
+
+
+Ringgrootte:
-
+
+ insufficient funds. Unlocked balance: %1
+ onvoldoende saldo. Beschikbaar saldo: %1
+
+
+ Couldn't send the money: Geld kon niet worden verstuurd:
-
+ InformationInformatie
-
+
+ Transaction saved to file: %1
+ Transactie opgeslagen naar bestand: %1
+
+
+
+ This address received %1 monero, with %2 confirmation(s).
+ Did adres heeft %1 monero ontvangen, met %2 bevestiging(en).
+
+
+
+ Balance (syncing)
+ Saldo (synchroniseren)
+
+
+
+ Balance
+ Saldo
+
+
+ Please wait...Even geduld aub…
+ Program setup wizard
- Installatie - Assistent
+ Installatie - Assistent
-
+
+ Monero
+ Monero
+
+
+ send to the same destinationnaar hetzelfde adres verzenden
+
+
+ Daemon is running
+ Node is gestart
+
+
+
+ Daemon will still be running in background when GUI is closed.
+ Node zal nog steeds in de achtergrond blijven lopen als de GUI gesloten is.
+
+
+
+ Stop daemon
+ Stop node
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+ Nieuwe monero-wallet-gu versiei is beschikbaar: %1<br>%2
+
diff --git a/translations/monero-core_pl.ts b/translations/monero-core_pl.ts
index fce93964..dd16a14d 100644
--- a/translations/monero-core_pl.ts
+++ b/translations/monero-core_pl.ts
@@ -58,6 +58,11 @@
Give this entry a name or description
+
+
+ Add
+
+ Error
@@ -78,9 +83,8 @@
Opis <font size='2'>(Lokalna baza danych)</font>
- ADD
- DODAJ
+ DODAJPayment ID
@@ -143,28 +147,30 @@
DaemonManagerDialog
- Daemon doesn't appear to be running
- Proces nie został uruchomiony
+ Proces nie został uruchomiony
- Start daemon
- Uruchom proces
+ Uruchom proces
- Cancel
- Anuluj
+ Anuluj
-
- Daemon startup flags
+
+ Starting Monero daemon in %1 seconds
-
- (optional)
+
+ Start daemon (%1)
+
+
+
+
+ Use custom settings
@@ -253,8 +259,12 @@
+ Filter
+
+
+ FILTER
- FILTRUJ
+ FILTRUJ
@@ -480,105 +490,119 @@
Saldo
-
+
+ Unlocked Balance
+
+
+ Unlocked Balance:
- Dostępne saldo:
+ Dostępne saldo:Mining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -586,27 +610,32 @@
NetworkStatusItem
-
+ Network statusStatus sieci
-
+ ConnectedPołączono
-
+
+ Synchronizing
+
+
+
+ Wrong versionNieprawidłowa wersja
-
+ DisconnectedRozłączono
-
+ Invalid connection statusNieprawidłowy status połączenia
@@ -624,12 +653,12 @@
Podaj hasło dla portefela:<br>
-
+ CancelAnuluj
-
+ OkOk
@@ -637,30 +666,51 @@
PrivacyLevelSmall
- LOW
- Niski
+ Niski
- MEDIUM
- Średni
+ Średni
- HIGH
- Wysoki
+ Wysoki
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+ ProgressBar
- Synchronizing blocks %1/%2
- Synchronizowanie bloków %1/%2
+ Synchronizowanie bloków %1/%2
-
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocksSynchronizowanie bloków
@@ -727,6 +777,11 @@
ReadOnly wallet address displayed hereAdres portfela tylko do odczytu
+
+
+ 16 hexadecimal characters
+
+ Integrated address
@@ -758,9 +813,8 @@
Identyfikator płatności
- 16 or 64 hexadecimal characters
- 16 lub 64 znaków szesnastkowych
+ 16 lub 64 znaków szesnastkowych
@@ -828,24 +882,16 @@
Settings
-
- Click button to show seed
- Kliknij przycisk by zobaczyć klucz
+ Kliknij przycisk by zobaczyć klucz
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
+ ErrorBłąd
-
+ Wrong passwordNieprawidłowe hasło
@@ -858,17 +904,17 @@
Te słowa są niezwykle istotne. Zapisz je. To jedyne co potrzebujesz, by odzyskać portfel.
-
+ Show seedPokaż klucz 25 słowny
-
+ Daemon addressAdres procesu
-
+ Manage walletZarządzaj portfelem
@@ -877,107 +923,121 @@
Zamknij ten portfel i otwórz kreator
-
+ Close walletZamknij portfel
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Manage daemonZarządzaj procesem
-
+ Start daemonUruchom proces
-
+ Stop daemonZatrzymaj proces
- Show log
- Pokaż log
+ Pokaż log
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ Hasło
+
+
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon logLog procesu
-
+
+ Wallet mnemonic seed
+
+
+
+ Hostname / IPHost / IP
-
+
+ Show status
+
+
+
+ PortPort
-
+ SaveZapisz
@@ -1023,8 +1083,34 @@
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
+
+
+
+
+ Please choose a file to verify
+
+
+ SIGN
- PODPISZ
+ PODPISZ
@@ -1033,10 +1119,8 @@
Lub plik:
-
- SELECT
- WYBIERZ
+ WYBIERZ
@@ -1062,10 +1146,8 @@
Wiadomość do potwierdzenia
-
- VERIFY
- POTWIERDŹ
+ POTWIERDŹ
@@ -1085,12 +1167,12 @@
StandardDialog
-
+ OkOk
-
+ CancelAnuluj
@@ -1101,31 +1183,39 @@
LOWNISKI
+
+ MEDIUM
+ ŚREDNI
+
+
+ HIGH
+ WYSOKI
+
- NORMAL
+ Normal
- MEDIUM
- ŚREDNI
+ Medium
+
- HIGH
- WYSOKI
+ High
+ Transfer
-
+ AmountWartość
-
+ Transaction priorityPriorytet transakcji
@@ -1139,245 +1229,280 @@
WSZYSTKO
- LOW (x1 fee)
- NISKI (prowizja x1)
+ NISKI (prowizja x1)
- MEDIUM (x20 fee)
- ŚREDNI (prowizja x20)
+ ŚREDNI (prowizja x20)
- HIGH (x166 fee)
- WYSOKI (prowizja x166)
+ WYSOKI (prowizja x166)Privacy levelPoziom prywatności
-
+ Transaction costKoszt transakcji
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adres <font size='2'> (Wklej lub wybierz z </font> <a href='#'>Ksiązki adresowej</a><font size='2'>)</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Adres <font size='2'> (Wklej lub wybierz z </font> <a href='#'>Ksiązki adresowej</a><font size='2'>)</font>Description <font size='2'>( Optional - saved to local wallet history )</font>Opis <font size='2'>(Opcjonalny - przechowywany lokalnie w historii portfela)</font>
-
+ Wallet is not connected to daemon.Potrfel nie jest podłączony do procesu.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemonPołączony proces nie jest kompatybilny z interfejsem graficznym.
Uaktualnij go lub podłącz się do innego procesu
-
+ Waiting on daemon synchronization to finishPoczekaj na zakończenie synchronizacji procesu
-
+ Payment ID <font size='2'>( Optional )</font>Identyfikator płatności <font size='2'>(Opcjonalny)</font>
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+ OpenAlias error
-
- Privacy level (ring size %1)
-
-
-
-
- ALL
-
-
-
-
- QRCODE
-
-
-
-
- RESOLVE
-
-
-
-
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ 16 or 64 hexadecimal characters16 lub 64 znaków szesnastkowych
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
- SEND
- WYŚLIJ
+ WYŚLIJ
-
- Advanced
+ SWEEP UNMIXABLE
+ MIESZAJ
+
+
+
+ Privacy level (ringsize %1)
-
- SWEEP UNMIXABLE
- MIESZAJ
+
+ all
+
-
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ Send
+ Wyślij
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ ErrorBłąd
-
+ Error:
-
-
+
+ InformationInformacja
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions: Liczba transakcji:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount:
-
+
Fee:
Opłata:
-
+
-Ring size:
+Ringsize:
-
+ ConfirmationPotwierdzenie
-
+ Can't submit transaction:
-
+ Money sent successfully
@@ -1433,6 +1558,11 @@ Ring size:
Paste tx keyWklej klucz tx
+
+
+ Check
+
+ Transaction key
@@ -1444,9 +1574,8 @@ Ring size:
- CHECK
- SPRAWDŹ
+ SPRAWDŹ
@@ -1490,7 +1619,7 @@ Ring size:
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1510,11 +1639,6 @@ Ring size:
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1552,21 +1676,21 @@ Ring size:
WizardFinish
-
-
-
+
+
+ EnabledWłączony
-
-
-
+
+
+ DisabledWyłączony
-
+ LanguageJęzyk
@@ -1579,40 +1703,45 @@ Ring size:
Źródło
-
+ Wallet name
-
+ Backup seed
-
+ Wallet pathŚcieżka portfela
-
+ Daemon addressAdres procesu
-
+ TestnetSieć testowa
-
+ Restore heightOdzyskaj wysokość
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ An overview of your Monero configuration is below:Podsumowanie twoich ustawień Monero poniżej:
@@ -1626,43 +1755,43 @@ Ring size:
WizardMain
-
+ A wallet with same name already exists. Please change wallet namePortfel o takiej nazwie istenieje. Podaj inną nazwę
-
+ Non-ASCII characters are not allowed in wallet path or account nameW nazwie portfela lub konta użyte niedozwolone znaki
-
+ USE MONEROUŻYJ MONERO
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ ErrorBłąd
-
+ Abort
@@ -1678,47 +1807,47 @@ Ring size:
Odzyskaj wysokość
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored inTwoj portfel został zachowany w
-
+ Please choose a directoryWybierz katalog
@@ -1743,27 +1872,27 @@ Ring size:
WizardOptions
-
+ Welcome to Monero!Witaj w świecie Monero!
-
+ Please select one of the following options:Wybierz jedną z opcji:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1789,7 +1918,7 @@ Ring size:
Proszę podaj adres procesu.
-
+ TestnetŚieć testowa
@@ -1819,13 +1948,13 @@ Ring size:
Potwierdź hasło
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1834,7 +1963,7 @@ Ring size:
WizardPasswordUI
-
+ PasswordHasło
@@ -1854,26 +1983,25 @@ Ring size:
Please enter your 25 word private keyWprowadź swój 25 słowny klucz prywatny
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
- Welcome
- Witaj
+ Witaj
-
+
+ Welcome to Monero!
+ Witaj w świecie Monero!
+
+
+ Please choose a language and regional format.Wybierz język i region.
@@ -1881,46 +2009,46 @@ Ring size:
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ ErrorBłąd
-
+ Couldn't open wallet: Nie można otworzyć portfela:
-
+ Can't create transaction: Wrong daemon version: Nie można zrealizować transakcji: Zła wersja procesu:
-
-
-
-
+
+
+
+ No unmixable outputs to sweepBrak niemiksowalnych wyjść do zmieszania
-
-
+
+ Please confirm transaction:
Potwierdź transakcję:
-
-
+
+
Amount:
@@ -1937,13 +2065,13 @@ Mixin:
Domieszka:
-
+
Number of transactions: Liczba transakcji:
-
+
Description:
@@ -1952,123 +2080,158 @@ Description:
Opis:
-
+ Amount is wrong: expected number from %1 to %2Wartość nieprawidłowa: oczekiwano liczby od %1 do %2
-
-
+
+ Can't create transaction: Nie można zrealizować transakcji:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balanceDostępne saldo
-
+
+ Unlocked balance (waiting for block)
+
+
+
+ Waiting for daemon to start...Czekam na start procesu...
-
+ Waiting for daemon to stop...Czekam na zakończenie procesu...
-
-
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+
+ ConfirmationPotwierdzenie
-
+
Address:
Adres:
-
+
Payment ID:
Identyfikator płatności:
-
-
+
+
Fee:
Opłata:
-
-
-
-Ring size:
+
+ Daemon is running
-
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+ Zatrzymaj proces
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
+ insufficient funds. Unlocked balance: %1niewystarczające środki: Dostępne saldo: %1
-
+ Couldn't send the money: Nie mogę przesłać pieniędzy:
-
+ InformationInformacja
-
+ Transaction saved to file: %1
-
+ This address received %1 monero, with %2 confirmation(s).
-
+ Balance (syncing)
-
+ BalanceSaldo
-
+ Please wait...Proszę czekać...
-
+ Money sent successfully: %1 transaction(s) Pomyślne przesłane pieniędzy, liczba transakcji: %1
-
+
+
+
+Ringsize:
+
+
+
+ Payment checkSprawdź płatność
-
+ This address received %1 monero, but the transaction is not yet minedTen adres otrzymał %1 monero, ale transakcja nie została jeszcze wykopana
@@ -2077,22 +2240,22 @@ Ring size:
Adres otrzymal %1 monero, liczba potwierdzeń: %2
-
+ This address received nothingTen adres nic nie otrzymał
-
+ Program setup wizard
-
+ Monero
-
+ send to the same destinationwyślij do tego samego celu
diff --git a/translations/monero-core_ru.ts b/translations/monero-core_ru.ts
index 17c645cc..1ca8d28a 100644
--- a/translations/monero-core_ru.ts
+++ b/translations/monero-core_ru.ts
@@ -58,6 +58,11 @@
Give this entry a name or description
+
+
+ Add
+
+ Error
@@ -73,11 +78,6 @@
Can't create entry
-
-
- ADD
-
- AddressBookTable
@@ -131,28 +131,18 @@
DaemonManagerDialog
-
- Daemon doesn't appear to be running
+
+ Starting Monero daemon in %1 seconds
-
- Start daemon
+
+ Start daemon (%1)
-
- Cancel
-
-
-
-
- Daemon startup flags
-
-
-
-
- (optional)
+
+ Use custom settings
@@ -241,7 +231,7 @@
- FILTER
+ Filter
@@ -459,105 +449,115 @@
Баланс
-
- Unlocked Balance:
+
+ Unlocked BalanceMining
-
+ Solo mining
-
+ (only available for local daemons)
-
+ Mining helps the Monero network build resilience.<br>
-
+ The more mining is done, the harder it is to attack the network.<br>
-
+ Mining also gives you a small chance to earn some Monero.<br>
-
+ Your computer will search for Monero block solutions.<br>
-
+ If you find a block, you will get the associated reward.<br>
-
+ CPU threads
-
+ (optional)
-
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+ Manage miner
-
+ Start mining
-
+ Error starting mining
-
+ Couldn't start mining.<br>
-
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
-
+ Stop mining
-
+ Status: not mining
-
+ Mining at %1 H/s
-
+ Not mining
-
+ Status:
@@ -565,27 +565,32 @@
NetworkStatusItem
-
+ Network status
-
+ Connected
-
- Wrong version
-
-
-
-
- Disconnected
+
+ Synchronizing
+ Wrong version
+
+
+
+
+ Disconnected
+
+
+
+ Invalid connection status
@@ -603,12 +608,12 @@
-
+ Cancel
-
+ Ok
@@ -616,30 +621,35 @@
PrivacyLevelSmall
-
- LOW
+
+ Low
-
- MEDIUM
+
+ Medium
-
- HIGH
+
+ HighProgressBar
-
- Synchronizing blocks %1/%2
+
+ Establishing connection...
-
+
+ Blocks remaining: %1
+
+
+
+ Synchronizing blocks
@@ -706,6 +716,11 @@
ReadOnly wallet address displayed here
+
+
+ 16 hexadecimal characters
+
+ Integrated address
@@ -736,11 +751,6 @@
Payment ID
-
-
- 16 or 64 hexadecimal characters
-
-
@@ -807,144 +817,142 @@
Settings
-
-
- Click button to show seed
-
-
-
-
-
- View only wallets doesn't have a mnemonic seed
-
-
-
-
+ Error
-
+ Wrong password
-
+ Show seed
-
+ Daemon address
-
+ Manage wallet
-
+ Close wallet
-
+ Create view only wallet
-
- This is very important to write down and keep secret. It is all you need to restore your wallet.
-
-
-
-
+ Manage daemon
-
+ Start daemon
-
+ Stop daemon
-
- Show log
-
-
-
-
- Status
-
-
-
-
+ Daemon startup flags
-
+ (optional)
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+
+
+
+ Layout settings
-
+ Custom decorations
-
+ Log level
-
+ (e.g. *:WARNING,net.p2p:DEBUG)
-
+ Version
-
+ GUI version:
-
+ Embedded Monero version:
-
+ Daemon log
-
+
+ Wallet mnemonic seed
+
+
+
+ Hostname / IP
-
+
+ Show status
+
+
+
+ Port
-
+ Save
@@ -990,7 +998,24 @@
- SIGN
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
@@ -999,12 +1024,6 @@
Or file:
-
-
-
- SELECT
-
- Filename with message to sign
@@ -1029,9 +1048,8 @@
-
-
- VERIFY
+
+ Please choose a file to verify
@@ -1048,12 +1066,12 @@
StandardDialog
-
+ Ok
-
+ Cancel
@@ -1062,29 +1080,29 @@
TickDelegate
- NORMAL
+ Normal
- MEDIUM
+ Medium
- HIGH
+ HighTransfer
-
+ Amount
-
+ Transaction priority
@@ -1094,235 +1112,246 @@
-
- LOW (x1 fee)
-
-
-
-
- MEDIUM (x20 fee)
-
-
-
-
- HIGH (x166 fee)
-
-
-
-
+ Transaction cost
-
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
-
-
-
-
+ Wallet is not connected to daemon.
-
+ Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon
-
+ Waiting on daemon synchronization to finish
-
+ Payment ID <font size='2'>( Optional )</font>
-
+ OpenAlias error
-
- Privacy level (ring size %1)
-
-
-
-
- ALL
-
-
-
-
- QRCODE
-
-
-
-
- RESOLVE
-
-
-
-
+ No valid address found at this OpenAlias address
-
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
-
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
-
-
+
+ Internal error
-
+ No address found
-
+ 16 or 64 hexadecimal characters
-
+ Description <font size='2'>( Optional )</font>
-
+ Saved to local wallet history
-
- SEND
+
+ Privacy level (ringsize %1)
-
- Advanced
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
-
- SWEEP UNMIXABLE
+
+ all
-
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ Send
+
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+ create tx file
-
+ sign tx file
-
+ submit tx file
-
+ Rescan spent
-
-
-
+
+
+ Error
-
+ Error:
-
-
+
+ Information
-
+ Sucessfully rescanned spent outputs
+
+ Please choose a file
+
+
+
+ Can't load unsigned transaction:
-
+
Number of transactions:
-
+
Transaction #%1
-
+
Recipient:
-
+
payment ID:
-
+
Amount:
-
+
Fee:
-
+
-Ring size:
+Ringsize:
-
+ Confirmation
-
+ Can't submit transaction:
-
+ Money sent successfully
@@ -1374,6 +1403,11 @@ Ring size:
Paste tx key
+
+
+ Check
+
+ Transaction key
@@ -1384,11 +1418,6 @@ Ring size:
If a payment had several transactions then each must be checked and the results combined.
-
-
- CHECK
-
- WizardConfigure
@@ -1431,7 +1460,7 @@ Ring size:
WizardCreateViewOnlyWallet
-
+ Create view only wallet
@@ -1443,11 +1472,6 @@ Ring size:
Create a new wallet
-
-
- Here is your wallet's 25 word mnemonic seed
-
- WizardDonation
@@ -1485,59 +1509,64 @@ Ring size:
WizardFinish
-
-
-
+
+
+ Enabled
-
-
-
+
+
+ Disabled
-
+ Language
-
+ Wallet name
-
+ Backup seed
-
+ Wallet path
-
+ Daemon address
-
+ Testnet
-
+ Restore height
-
+ New wallet details:
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
@@ -1547,43 +1576,43 @@ Ring size:
WizardMain
-
+ A wallet with same name already exists. Please change wallet name
-
+ Non-ASCII characters are not allowed in wallet path or account name
-
+ USE MONERO
-
+ Create wallet
-
+ Success
-
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
%1
-
+ Error
-
+ Abort
@@ -1591,47 +1620,47 @@ Ring size:
WizardManageWalletUI
-
+ Wallet name
-
+ Restore from seed
-
+ Restore from keys
-
+ Account address (public)
-
+ View key (private)
-
+ Spend key (private)
-
+ Restore height (optional)
-
+ Your wallet is stored in
-
+ Please choose a directory
@@ -1652,27 +1681,27 @@ Ring size:
WizardOptions
-
+ Welcome to Monero!
-
+ Please select one of the following options:
-
+ Create a new wallet
-
+ Restore wallet from keys or mnemonic seed
-
+ Open a wallet from file
@@ -1682,7 +1711,7 @@ Ring size:
-
+ Testnet
@@ -1690,13 +1719,13 @@ Ring size:
WizardPassword
-
-
+
+ Give your wallet a password
-
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
<b>Enter a strong password</b> (using letters, numbers, and/or symbols):
@@ -1705,7 +1734,7 @@ Ring size:
WizardPasswordUI
-
+ Password
@@ -1717,26 +1746,25 @@ Ring size:
WizardRecoveryWallet
-
-
- Restore wallet
-
-
- Enter your 25 word mnemonic seed:
+ Restore walletWizardWelcome
- Welcome
- Добро пожаловать
+ Добро пожаловать
-
+
+ Welcome to Monero!
+
+
+
+ Please choose a language and regional format.Пожалуйста выберите язык и региональный формат.
@@ -1744,198 +1772,233 @@ Ring size:
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Error
-
+ Couldn't open wallet:
-
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+ Can't create transaction: Wrong daemon version:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep
-
-
+
+ Please confirm transaction:
-
-
+
+
Amount:
-
+
+
+
+Ringsize:
+
+
+
+
Number of transactions:
-
+
Description:
-
+ Amount is wrong: expected number from %1 to %2
-
-
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
+
+ Can't create transaction:
-
+ Unlocked balance (~%1 min)
-
+ Unlocked balance
-
+ Waiting for daemon to start...
-
+ Waiting for daemon to stop...
-
-
+
+ Confirmation
-
+
Address:
-
+
Payment ID:
-
-
+
+
Fee:
-
-
-
-Ring size:
-
-
-
-
+ insufficient funds. Unlocked balance: %1
-
+ Couldn't send the money:
-
+ Information
-
+ Transaction saved to file: %1
-
+ This address received %1 monero, with %2 confirmation(s).
-
+ Balance (syncing)
-
+ BalanceБаланс
-
+ Please wait...
-
+ Money sent successfully: %1 transaction(s)
-
+ Payment check
-
+ This address received %1 monero, but the transaction is not yet mined
-
+ This address received nothing
-
+ Program setup wizard
-
+ Monero
-
+ send to the same destination
diff --git a/translations/monero-core_zh.ts b/translations/monero-core_zh.ts
index 962a20a5..6d11994c 100644
--- a/translations/monero-core_zh.ts
+++ b/translations/monero-core_zh.ts
@@ -4,55 +4,95 @@
AddressBook
-
+ Add new entry增加付款位址
-
-
+ Address位址
-
+ <b>Tip tekst test</b>
-
+
+ QRCODE
+
+
+
+
+ 4...
+
+
+
+ Payment ID <font size='2'>(Optional)</font>付款 ID <font size='2'>(可選填)</font>
-
+ <b>Payment ID</b><br/><br/>A unique user name used in<br/>the address book. It is not a<br/>transfer of information sent<br/>during the transfer<b>付款 ID</b><br/><br/>在位址簿裡<br/>用以區分的使用者名稱<br/>這不是付款時<br/>傳送的資訊
-
- Description <font size='2'>(Local database)</font>
- 描述 <font size='2'>(本地資訊)</font>
+
+ Paste 64 hexadecimal characters
+
-
+
+ Description <font size='2'>(Optional)</font>
+
+
+
+
+ Give this entry a name or description
+
+
+
+
+ Add
+
+
+
+
+ Error
+ 錯誤
+
+
+
+ Invalid address
+
+
+
+
+ Can't create entry
+
+
+
+ Description <font size='2'>(Local database)</font>
+ 描述 <font size='2'>(本地資訊)</font>
+
+
+ <b>Tip test test</b><br/><br/>test line 2
- ADD
- 新增
+ 新增
- Payment ID
- 付款 ID
+ 付款 ID
- Description
- 標記
+ 標記
@@ -92,16 +132,45 @@
- DaemonProgress
+ DaemonConsole
-
- Synchronizing blocks %1/%2
- 同步區塊中 %1 / %2
+
+ Close
+
+
+
+
+ command + enter (e.g help)
+
+
+
+
+ DaemonManagerDialog
+
+
+ Starting Monero daemon in %1 seconds
+
+
+
+
+ Start daemon (%1)
+
+
+
+
+ Use custom settings
+
+
+
+
+ DaemonProgress
+
+ Synchronizing blocks %1/%2
+ 同步區塊中 %1 / %2
- Synchronizing blocks
- 同步區塊中
+ 同步區塊中
@@ -163,57 +232,63 @@
<b>選擇的付款總金額</b>
-
+
+ Type for incremental search...
+
+
+
+
+ Filter
+
+
+ Incremental search
- 新增搜尋條件
+ 新增搜尋條件
- Search transfers for a given string
- 以關鍵字搜尋付款紀錄
+ 以關鍵字搜尋付款紀錄
- Type search string
- 輸入搜尋關鍵字
+ 輸入搜尋關鍵字
-
+ Date from日期從
-
-
-
-
-
+
+
+
+
+ <b>Tip tekst test</b>
-
-
+
+ To到
- FILTER
- 篩選
+ 篩選
-
+ Advanced filtering進階篩選
-
+ Type of transaction交易種類
-
+ Amount from金額從
@@ -221,53 +296,73 @@
HistoryTable
-
+ Tx ID:
-
-
+
+ Payment ID:付款ID:
-
+ Tx key:
-
+ Tx note:
-
+
+ Destinations:
+
+
+
+ No more results沒有更多了
-
+ Details細節
-
+ BlockHeight:區塊高度:
-
+
+ (%1/10 confirmations)
+
+
+
+
+ UNCONFIRMED
+
+
+
+
+ PENDING
+
+
+
+ Date日期
-
+ Amount金額
-
+ Fee手續費
@@ -275,78 +370,116 @@
LeftPanel
-
+ Balance餘額
-
+ Test tip 1<br/><br/>line 2
-
+ Unlocked balance總餘額
-
+ Test tip 2<br/><br/>line 2
-
+ Send付款
-
- T
-
-
-
-
+ Receive收款
-
+ R
- Verify payment
- 確認交易
+ 確認交易
-
+ K
-
+ History歷史紀錄
-
+
+ Address book
+
+
+
+
+ B
+
+
+
+ H
-
- Sign/verify
- 簽署 / 驗證
+
+ Advanced
+
-
-
- S
+
+ D
+
+
+
+
+ Mining
+
+
+
+
+ M
+ Check payment
+
+
+
+
+ Sign/verify
+ 簽署 / 驗證
+
+
+
+ E
+
+
+
+
+ S
+
+
+
+
+ I
+
+
+
+ Settings設定
@@ -354,40 +487,161 @@
MiddlePanel
- Balance:
- 總餘額:
+ 總餘額:
- Unlocked Balance:
- 可用餘額:
+ 可用餘額:
+
+
+
+ Balance
+ 餘額
+
+
+
+ Unlocked Balance
+
+
+
+
+ Mining
+
+
+ Solo mining
+
+
+
+
+ (only available for local daemons)
+
+
+
+
+ Mining helps the Monero network build resilience.<br>
+
+
+
+
+ The more mining is done, the harder it is to attack the network.<br>
+
+
+
+
+ Mining also gives you a small chance to earn some Monero.<br>
+
+
+
+
+ Your computer will search for Monero block solutions.<br>
+
+
+
+
+ If you find a block, you will get the associated reward.<br>
+
+
+
+
+ CPU threads
+
+
+
+
+ (optional)
+
+
+
+
+ Background mining (experimental)
+
+
+
+
+ Enable mining when running on battery
+
+
+
+
+ Manage miner
+
+
+
+
+ Start mining
+
+
+
+
+ Error starting mining
+
+
+
+
+ Couldn't start mining.<br>
+
+
+
+
+ Mining is only available on local daemons. Run a local daemon to be able to mine.<br>
+
+
+
+
+ Stop mining
+
+
+
+
+ Status: not mining
+
+
+
+
+ Mining at %1 H/s
+
+
+
+
+ Not mining
+
+
+
+
+ Status:
+ NetworkStatusItem
-
+
+ Synchronizing
+
+
+
+ Connected已連接
-
+ Wrong version版本錯誤
-
+ Disconnected已離線
-
+ Invalid connection status無效的連接狀態
-
+ Network status網路同步狀態
@@ -395,17 +649,22 @@
PasswordDialog
-
+ Please enter wallet password請輸入錢包的密碼
-
+
+ Please enter wallet password for:<br>
+
+
+
+ Cancel取消
-
+ Ok確定
@@ -413,66 +672,175 @@
PrivacyLevelSmall
- LOW
- 低
+ 低
- MEDIUM
- 中
+ 中
- HIGH
- 高
+ 高
+
+
+
+ Low
+
+
+
+
+ Medium
+
+
+
+
+ High
+
+
+
+
+ ProgressBar
+
+
+ Establishing connection...
+
+
+
+
+ Blocks remaining: %1
+
+
+
+
+ Synchronizing blocks
+ 同步區塊中Receive
-
+ Invalid payment ID無效的付款ID
+ WARNING: no connection to daemon
+
+
+
+
+ in the txpool: %1
+
+
+
+
+ %2 confirmations: %3 (%1)
+
+
+
+
+ 1 confirmation: %2 (%1)
+
+
+
+
+ No transaction found yet...
+
+
+
+
+ Transaction found
+
+
+
+
+ %1 transactions found
+
+
+
+
+ with more money (%1)
+
+
+
+
+ with not enough money (%1)
+
+
+
+ Address位址
-
+ ReadOnly wallet address displayed here唯讀錢包的位址會顯示在這
-
+
+ 16 hexadecimal characters
+
+
+
+ Integrated address整合位址
-
+ ReadOnly wallet integrated address displayed here唯讀錢包的整合位址會顯示在這
-
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Tracking <font size='2'> (</font><a href='#'>help</a><font size='2'>)</font>
+
+
+
+
+ Tracking payments
+
+
+
+
+ <p><font size='+2'>This is a simple sales tracker:</font></p><p>Click Generate to create a random payment id for a new customer</p> <p>Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).</p><p>This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.</p>It's up to you whether to accept unconfirmed transactions or not. It is likely they'll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).</p>
+
+
+
+
+ Save QrCode
+
+
+
+
+ Failed to save QrCode to
+
+
+
+
+ Save As
+
+
+
+ Payment ID付款ID
- 16 or 64 hexadecimal characters
- 16 或 64 十六進位字母
+ 16 或 64 十六進位字母
-
+ Generate產生
-
-
+
+ Amount金額
@@ -516,58 +884,158 @@
Settings
-
- Click button to show seed
- 點選顯示種子碼
+ 點選顯示種子碼
- Mnemonic seed:
- 輔助記憶種子碼:
+ 輔助記憶種子碼:
- It is very important to write it down as this is the only backup you will need for your wallet.
- 請注意這是唯一需要備份的錢包資訊,請一定要抄寫下來。
+ 請注意這是唯一需要備份的錢包資訊,請一定要抄寫下來。
-
+
+ Create view only wallet
+
+
+
+ Show seed顯示種子碼
-
+
+ Manage daemon
+
+
+
+
+ Start daemon
+
+
+
+
+ Stop daemon
+
+
+
+
+ Show status
+
+
+
+
+ Daemon startup flags
+
+
+
+
+ (optional)
+
+
+
+ Daemon address區塊鏈同步程式位置
-
+ Hostname / IP主機名稱 / IP位置
-
+ Port通訊埠
-
+
+ Login (optional)
+
+
+
+
+ Username
+
+
+
+
+ Password
+ 密碼
+
+
+ Save儲存
-
+
+ Layout settings
+
+
+
+
+ Custom decorations
+
+
+
+
+ Log level
+
+
+
+
+ (e.g. *:WARNING,net.p2p:DEBUG)
+
+
+
+
+ Version
+
+
+
+
+ GUI version:
+
+
+
+
+ Embedded Monero version:
+
+
+
+
+ Daemon log
+
+
+
+
+ Wallet mnemonic seed
+
+
+
+
+ Error
+ 錯誤
+
+
+
+ Wrong password
+
+
+
+ Manage wallet管理錢包
- Close current wallet and open wizard
- 關閉當前的錢包然後啟動設定精靈
+ 關閉當前的錢包然後啟動設定精靈
-
+ Close wallet關閉錢包
@@ -613,8 +1081,39 @@
+ Sign
+
+
+
+
+ Please choose a file to sign
+
+
+
+
+
+ Select
+
+
+
+
+
+ Verify
+
+
+
+
+ Please choose a file to verify
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+ SIGN
- 簽署
+ 簽署
@@ -623,10 +1122,8 @@
或檔案:
-
- SELECT
- 選擇檔案
+ 選擇檔案
@@ -652,10 +1149,8 @@
欲驗證的訊息
-
- VERIFY
- 驗證
+ 驗證
@@ -663,20 +1158,19 @@
附帶簽署訊息的檔案名稱
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Signing address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> 簽署的位址 <font size='2'> ( 輸入或從簿選擇 </font> <a href='#'>Address</a><font size='2'> 簿選擇 )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> 簽署的位址 <font size='2'> ( 輸入或從簿選擇 </font> <a href='#'>Address</a><font size='2'> 簿選擇 )</font>StandardDialog
-
+ Ok確定
-
+ Cancel取消
@@ -684,125 +1178,378 @@
TickDelegate
- LOW
- 低
+ 低
+
+
+ MEDIUM
+ 中
+
+
+ HIGH
+ 高
+
+
+
+ Normal
+
- MEDIUM
- 中
+ Medium
+
- HIGH
- 高
+ High
+ Transfer
-
+
+ OpenAlias error
+
+
+
+
+ Privacy level (ringsize %1)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>
+
+
+
+ Amount金額
-
+ Transaction priority交易優先程度
-
-
+
+ all
-
+
+ Low (x1 fee)
+
+
+
+
+ Medium (x20 fee)
+
+
+
+
+ High (x166 fee)
+
+
+
+
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Paste in or select from </font> <a href='#'>Address book</a><font size='2'> )</font>
+
+
+
+
+ QR Code
+
+
+
+
+ Resolve
+
+
+
+
+ No valid address found at this OpenAlias address
+
+
+
+
+ Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed
+
+
+
+
+ No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed
+
+
+
+
+
+ Internal error
+
+
+
+
+ No address found
+
+
+
+
+ Description <font size='2'>( Optional )</font>
+
+
+
+
+ Saved to local wallet history
+
+
+
+
+ Send
+ 付款
+
+
+
+ Show advanced options
+
+
+
+
+ Sweep Unmixable
+
+
+
+
+ create tx file
+
+
+
+
+ sign tx file
+
+
+
+
+ submit tx file
+
+
+
+
+ Rescan spent
+
+
+
+
+
+
+ Error
+ 錯誤
+
+
+
+ Error:
+
+
+
+
+
+ Information
+ 資訊
+
+
+
+ Sucessfully rescanned spent outputs
+
+
+
+
+
+ Please choose a file
+
+
+
+
+ Can't load unsigned transaction:
+
+
+
+
+
+Number of transactions:
+
+交易數量:
+
+
+
+
+Transaction #%1
+
+
+
+
+
+Recipient:
+
+
+
+
+
+payment ID:
+
+
+
+
+
+Amount:
+
+
+
+
+
+Fee:
+ 手續費:
+
+
+
+
+Ringsize:
+
+
+
+
+ Confirmation
+ 確認
+
+
+
+ Can't submit transaction:
+
+
+
+
+ Money sent successfully
+
+
+
+
+
+ Wallet is not connected to daemon.
+
+
+
+
+ Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon
+
+
+
+
+ Waiting on daemon synchronization to finish
+
+
+
+
+
+
+
+ or ALL
- 或發送全部餘額
+ 或發送全部餘額
- LOW
- 低
+ 低
- MEDIUM
- 中
+ 中
- HIGH
- 高
+ 高
- Privacy level
- 隱私等級
+ 隱私等級
-
+ Transaction cost交易所需的花費
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> Address <font size='2'> ( Type in or select from </font> <a href='#'>Address</a><font size='2'> book )</font>
- <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> 位址 <font size='2'> ( 輸入位址或從 </font> <a href='#'>Address</a><font size='2'> 簿選擇 )</font>
+ <style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style> 位址 <font size='2'> ( 輸入位址或從 </font> <a href='#'>Address</a><font size='2'> 簿選擇 )</font>
-
+ Payment ID <font size='2'>( Optional )</font>付款ID <font size='2'>( 可不填 )</font>
-
+ 16 or 64 hexadecimal characters16 或 64 十六進位字元
- Description <font size='2'>( An optional description that will be saved to the local address book if entered )</font>
- 標記 <font size='2'>( 選填,將儲存在收款位址簿 )</font>
+ 標記 <font size='2'>( 選填,將儲存在收款位址簿 )</font>
- SEND
- 付款
+ 付款
- SWEEP UNMIXABLE
- 去除無法混幣的金額
+ 去除無法混幣的金額TxKey
- You can verify that a third party made a payment by supplying:
- 您可以在此驗證第三方的支付,需提供:
+ 您可以在此驗證第三方的支付,需提供:
+
+
+ - the recipient address,
+ - 接受方的位址,
+
+
+ - the transaction ID,
+ - 該項交易的交易ID
+
+
+ - the tx secret key supplied by the sender
+ - 支付方提供的 tx 金鑰
+
+
+ If a payment was made up of several transactions, each transaction must be checked, and the results added
+ 如果該支付是同時包含數個交易,每一項交易都必須被確認和合併結果
+
+
+
+ Verify that a third party made a payment by supplying:
+
- - the recipient address,
- - 接受方的位址,
+ - the recipient address
+
- - the transaction ID,
- - 該項交易的交易ID
+ - the transaction ID
+
- - the tx secret key supplied by the sender
- - 支付方提供的 tx 金鑰
+ - the secret transaction key supplied by the sender
+
- If a payment was made up of several transactions, each transaction must be checked, and the results added
- 如果該支付是同時包含數個交易,每一項交易都必須被確認和合併結果
+ If a payment had several transactions then each must be checked and the results combined.
+
@@ -821,8 +1568,22 @@
+ Paste tx ID
+
+
+
+
+ Paste tx key
+
+
+
+
+ Check
+
+
+ Transaction ID here
- 輸入交易ID
+ 輸入交易ID
@@ -830,14 +1591,12 @@
交易金鑰
- Transaction key here
- 輸入交易金鑰
+ 輸入交易金鑰
- CHECK
- 檢查
+ 檢查
@@ -853,42 +1612,57 @@
開始同步 Monero 區塊鏈?
- It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- 這是唯一需要備份的錢包資訊,請一定要抄寫下來。你將會在下一個步驟被要求確認這份種子碼以確保你有妥善備份它。
+ 這是唯一需要備份的錢包資訊,請一定要抄寫下來。你將會在下一個步驟被要求確認這份種子碼以確保你有妥善備份它。
-
+
+ It is very important to write it down as this is the only backup you will need for your wallet.
+ 請注意這是唯一需要備份的錢包資訊,請一定要抄寫下來。
+
+
+ Enable disk conservation mode?啟動硬碟節約模式?
-
+ Disk conservation mode uses substantially less disk-space, but the same amount of bandwidth as a regular Monero instance. However, storing the full blockchain is beneficial to the security of the Monero network. If you are on a device with limited disk space, then this option is appropriate for you.硬碟節約模式能精簡區塊鏈的資料而減少硬碟空間的使用量,但保存完整的區塊鏈能加強 Monero 網路的安全性,當您需要在容量較小的硬碟上執行,那麼這個功能就很適合您,此功能對於網路頻寬的用量沒有影響。
-
+ Allow background mining?允許程式在背景挖礦嗎?
-
+ Mining secures the Monero network, and also pays a small reward for the work done. This option will let Monero mine when your computer is on mains power and is idle. It will stop mining when you continue working.啟動挖礦功能可讓 Monero 的系統網路更加安全,且在工作完成時獲得小額的獎勵金。這個功能只會在電腦插著電源並且閒置時才會自動啟動,當您繼續使用電腦後即會停止挖礦。
+
+ WizardCreateViewOnlyWallet
+
+
+ Create view only wallet
+
+
+WizardCreateWallet
- A new wallet has been created for you
- 已為您建立一個新的錢包
+ 已為您建立一個新的錢包
- This is the 25 word mnemonic for your wallet
- 這是錢包的25字輔助記憶種子碼
+ 這是錢包的25字輔助記憶種子碼
+
+
+
+ Create a new wallet
+
@@ -927,97 +1701,182 @@
WizardFinish
-
-
-
+
+
+ Enabled啟用
-
-
-
+
+
+ Disabled停用
-
+ Language語言
- Account name
- 帳戶名稱
+ 帳戶名稱
- Seed
- 種子碼
+ 種子碼
-
+
+ Wallet name
+
+
+
+
+ Backup seed
+
+
+
+ Wallet path錢包位置
-
+ Daemon address區塊鏈同步程式位置
-
+ Testnet連接到測試用網路
-
+ Restore height指定區塊高度
-
- An overview of your Monero configuration is below:
- 以下是您的 Monero 錢包設定總覽:
+
+ New wallet details:
+
+
+
+
+ Don't forget to write down your seed. You can view your seed and change your settings on settings page.
+
+ You’re all set up!
+
+
+
+ An overview of your Monero configuration is below:
+ 以下是您的 Monero 錢包設定總覽:
+
+ You’re all setup!
- 您已完成所有設定!
+ 您已完成所有設定!WizardMain
-
+ A wallet with same name already exists. Please change wallet name已有重複的錢包名稱存在,請更改錢包名稱
-
+
+ Non-ASCII characters are not allowed in wallet path or account name
+
+
+
+ USE MONERO使用 MONERO
+
+
+ Create wallet
+
+
+
+
+ Success
+
+
+
+
+ The view only wallet has been created. You can open it by closing this current wallet, clicking the "Open wallet from file" option, and selecting the view wallet in:
+%1
+
+
+
+
+ Error
+ 錯誤
+
+
+
+ Abort
+
+ WizardManageWalletUI
- This is the name of your wallet. You can change it to a different name if you’d like:
- 這是您的錢包名稱,您也可以自己更改成想要的名稱:
+ 這是您的錢包名稱,您也可以自己更改成想要的名稱:
- Restore height
- 回復區塊高度
+ 回復區塊高度
-
+
+ Wallet name
+
+
+
+
+ Restore from seed
+
+
+
+
+ Restore from keys
+
+
+
+
+ Account address (public)
+
+
+
+
+ View key (private)
+
+
+
+
+ Spend key (private)
+
+
+
+
+ Restore height (optional)
+
+
+
+ Your wallet is stored in您的錢包被儲存在
-
+ Please choose a directory請選擇一個目錄
@@ -1025,45 +1884,70 @@
WizardMemoTextInput
- It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.
- 這是您唯一需要備份的錢包資訊,請一定要抄寫下來。您將會在下一個後被要求確認這份種子碼以確保你有妥善備份它。
+ 這是您唯一需要備份的錢包資訊,請一定要抄寫下來。您將會在下一個後被要求確認這份種子碼以確保你有妥善備份它。
+
+
+
+ Enter your 25 word mnemonic seed
+
+
+
+
+ This seed is <b>very</b> important to write down and keep secret. It is all you need to backup and restore your wallet.
+ WizardOptions
-
+ Welcome to Monero!歡迎使用 Monero!
-
+ Please select one of the following options:請於下面選擇您需要的功能:
-
+
+ Create a new wallet
+
+
+
+
+ Restore wallet from keys or mnemonic seed
+
+
+
+
+ Open a wallet from file
+
+
+
+
+ Custom daemon address (optional)
+
+
+ This is my first time, I want to create a new account
- 這是我第一次使用,我想要創建一個新的帳戶
+ 這是我第一次使用,我想要創建一個新的帳戶
- I want to recover my account from my 25 word seed
- 我想要從一組25字種子碼回復我的帳戶
+ 我想要從一組25字種子碼回復我的帳戶
- I want to open a wallet from file
- 我想要從檔案開啟錢包
+ 我想要從檔案開啟錢包
- Please setup daemon address below.
- 請在下面設定區塊鏈同步程式的位置。
+ 請在下面設定區塊鏈同步程式的位置。
-
+ Testnet連接至測試用網路
@@ -1071,55 +1955,82 @@
WizardPassword
- Now that your wallet has been created, please set a password for the wallet
- 您的新錢包已被建立,請為它設定一組密碼
+ 您的新錢包已被建立,請為它設定一組密碼
- Now that your wallet has been restored, please set a password for the wallet
- 您的錢包已被成功回復,請為它設定一組密碼
+ 您的錢包已被成功回復,請為它設定一組密碼
- Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given<br/><br/>
Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.
- 請注意:這個密碼無法被回復,如果忘記了這組密碼,您將需要用剛剛獲得的輔助記憶種子碼重新回復您的錢包<br/><br/>
+ 請注意:這個密碼無法被回復,如果忘記了這組密碼,您將需要用剛剛獲得的輔助記憶種子碼重新回復您的錢包<br/><br/>
密碼將會用來保護您的錢包或確認重要的動作,所以請確認您的密碼強度足夠安全。
- Password
- 密碼
+ 密碼
- Confirm password
- 確認密碼
+ 確認密碼
+
+
+
+
+ Give your wallet a password
+
+
+
+
+ Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.<br/><br/>
+ <b>Enter a strong password</b> (using letters, numbers, and/or symbols):
+
+
+
+
+ WizardPasswordUI
+
+
+ Password
+ 密碼
+
+
+
+ Confirm password
+ 確認密碼WizardRecoveryWallet
- We're ready to recover your account
- 已準備好回復您的錢包
+ 已準備好回復您的錢包
- Please enter your 25 word private key
- 請輸入您的 25字種子碼
+ 請輸入您的 25字種子碼
+
+
+
+ Restore wallet
+ WizardWelcome
- Welcome
- 歡迎
+ 歡迎
-
+
+ Welcome to Monero!
+ 歡迎使用 Monero!
+
+
+ Please choose a language and regional format.請選擇您的語言和地區格式。
@@ -1127,77 +2038,111 @@
main
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ Error錯誤
-
+ Couldn't open wallet: 無法開啟這個錢包:
- Synchronizing blocks %1 / %2
- 同步區塊中 %1 / %2
+ 同步區塊中 %1 / %2
-
+
+ Unlocked balance (waiting for block)
+
+
+
+
+ Unlocked balance (~%1 min)
+
+
+
+
+ Unlocked balance
+ 總餘額
+
+
+
+ Waiting for daemon to start...
+
+
+
+
+ Waiting for daemon to stop...
+
+
+
+
+ Daemon failed to start
+
+
+
+
+ Please check your wallet and daemon log for errors. You can also try to start %1 manually.
+
+
+
+ Can't create transaction: Wrong daemon version: 無法建立此項交易: 區塊鏈同步程式版本錯誤:
-
-
+
+ Can't create transaction: 無法建立此項交易:
-
-
-
-
+
+
+
+ No unmixable outputs to sweep沒有無法混幣的輸出需要去除
-
-
+
+ Confirmation確認
-
-
+
+ Please confirm transaction:
請確認此項交易:
-
+
Address:
位址:
-
+
Payment ID:
付款ID:
-
-
+
+
Amount:
@@ -1206,30 +2151,61 @@ Amount:
金額:
-
-
+
+
Fee: 手續費:
-
+
+
+
+Ringsize:
+
+
+
+
+ This address received %1 monero, with %2 confirmation(s).
+
+
+
+
+ Daemon is running
+
+
+
+
+ Daemon will still be running in background when GUI is closed.
+
+
+
+
+ Stop daemon
+
+
+
+
+ New version of monero-wallet-gui is available: %1<br>%2
+
+
+
Mixin:
-
+
混幣數量:
-
+
Number of transactions:
交易數量:
-
+
Description:
@@ -1238,67 +2214,81 @@ Description:
描述:
-
+ Amount is wrong: expected number from %1 to %2金額錯誤: 數字需介於 %1 到 %2 之間
-
+ insufficient funds. Unlocked balance: %1資金不足,總餘額僅有: %1
-
+ Couldn't send the money: 無法付款:
-
+ Information資訊
-
+ Money sent successfully: %1 transaction(s) %1 筆款項已成功發送
-
+
+ Transaction saved to file: %1
+
+
+
+ Payment check付款確認
-
+ This address received %1 monero, but the transaction is not yet mined這個位址已收到 %1 monero幣,但這筆交易尚未被礦工確認
- This address received %1 monero, with %2 confirmations
- 這個位址已收到 %1 monero幣,並已經過 %2 次的確認
+ 這個位址已收到 %1 monero幣,並已經過 %2 次的確認
-
+ This address received nothing這個位址沒有收到款項
-
+
+ Balance (syncing)
+
+
+
+
+ Balance
+ 餘額
+
+
+ Please wait...請稍後...
-
+ Program setup wizard程式設定精靈
-
+ MoneroMonero
-
+ send to the same destination付款至相同位址