aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Gomoła <szogun1987@gmail.com>2018-02-21 13:36:57 +0100
committerWojciech Gomoła <szogun1987@gmail.com>2018-02-21 13:36:57 +0100
commitd07e4157333ef69453fb7edc6044de8385f5936d (patch)
tree1c6765f3e933462a6509f254451e8ca49195e642
parent746f3adb6e0e4b9a5e7d6be6629ea37fe51fe306 (diff)
parent084c1c84f3e5b98732d16407085c1cbef7b677e2 (diff)
downloadmonzero-gui-d07e4157333ef69453fb7edc6044de8385f5936d.tar.gz
monzero-gui-d07e4157333ef69453fb7edc6044de8385f5936d.tar.xz
monzero-gui-d07e4157333ef69453fb7edc6044de8385f5936d.zip
Merge branch 'master' into szogun1987-polish-translations
-rw-r--r--lang/flags/czech.pngbin37702 -> 6083 bytes
-rw-r--r--lang/flags/egypt.pngbin1803 -> 6706 bytes
-rw-r--r--lang/flags/slovenia.pngbin0 -> 12039 bytes
-rw-r--r--lang/flags/south_korea.pngbin39076 -> 9579 bytes
-rw-r--r--lang/languages.xml3
-rw-r--r--monero-wallet-gui.pro1
-rw-r--r--pages/Transfer.qml5
-rw-r--r--qml.qrc15
-rw-r--r--src/libwalletqt/UnsignedTransaction.h7
-rw-r--r--start-low-graphics-mode.bat5
-rw-r--r--translations/monero-core_fr.ts248
-rw-r--r--translations/monero-core_sl.ts2525
12 files changed, 2673 insertions, 136 deletions
diff --git a/lang/flags/czech.png b/lang/flags/czech.png
index 90db0159..4b8194fe 100644
--- a/lang/flags/czech.png
+++ b/lang/flags/czech.png
Binary files differ
diff --git a/lang/flags/egypt.png b/lang/flags/egypt.png
index 8c911356..55748062 100644
--- a/lang/flags/egypt.png
+++ b/lang/flags/egypt.png
Binary files differ
diff --git a/lang/flags/slovenia.png b/lang/flags/slovenia.png
new file mode 100644
index 00000000..b57c734d
--- /dev/null
+++ b/lang/flags/slovenia.png
Binary files differ
diff --git a/lang/flags/south_korea.png b/lang/flags/south_korea.png
index 0bf9c12c..94a6a4a4 100644
--- a/lang/flags/south_korea.png
+++ b/lang/flags/south_korea.png
Binary files differ
diff --git a/lang/languages.xml b/lang/languages.xml
index 7dcd74f1..43c3965d 100644
--- a/lang/languages.xml
+++ b/lang/languages.xml
@@ -23,7 +23,7 @@ List of available languages for your wallet's seed:
<language display_name="Español" locale="es_ES" wallet_language="Español" flag="/lang/flags/spain.png" qs="none"/>
<!-- <language display_name="Suomen kieli" locale="fi" wallet_language="English" flag="/lang/flags/finland.png" qs="none"/> -->
<language display_name="Français" locale="fr_FR" wallet_language="Français" flag="/lang/flags/france.png" qs="none"/>
- <language display_name="Swedish" locale="sv_SE" wallet_language="English" flag="/lang/flags/sweden.png" qs="none"/>
+ <language display_name="Svenska" locale="sv_SE" wallet_language="English" flag="/lang/flags/sweden.png" qs="none"/>
<!-- <language display_name="Hrvatski" locale="hr_HR" wallet_language="English" flag="/lang/flags/croatia.png" qs="none"/> -->
<!-- <language display_name="हिन्दी" locale="hi_IN" wallet_language="English" flag="/lang/flags/india.png" qs="none"/> -->
<language display_name="Bahasa Indonesia" locale="id_ID" wallet_language="English" flag="/lang/flags/indonesia.png" qs="none"/>
@@ -42,4 +42,5 @@ List of available languages for your wallet's seed:
<language display_name="Česky" locale="cs_CZ" wallet_language="English" flag="/lang/flags/czech.png" qs="none"/>
<language display_name="Slovensky" locale="sk_SK" wallet_language="English" flag="/lang/flags/slovakia.png" qs="none"/>
<language display_name="Arabic" locale="ar_AR" wallet_language="English" flag="/lang/flags/egypt.png" qs="none"/>
+ <language display_name="Slovenski" locale="sl_SI" wallet_language="English" flag="/lang/flags/slovenia.png" qs="none"/>
</languages>
diff --git a/monero-wallet-gui.pro b/monero-wallet-gui.pro
index 578ad0e7..c92550a9 100644
--- a/monero-wallet-gui.pro
+++ b/monero-wallet-gui.pro
@@ -331,6 +331,7 @@ TRANSLATIONS = \ # English is default language, no explicit translation file
$$PWD/translations/monero-core_cs.ts \ # Czech
$$PWD/translations/monero-core_sk.ts \ # Slovak
$$PWD/translations/monero-core_ar.ts \ # Arabic
+ $$PWD/translations/monero-core_sl.ts \ # Slovenian
CONFIG(release, debug|release) {
DESTDIR = release/bin
diff --git a/pages/Transfer.qml b/pages/Transfer.qml
index c561efaf..5e505f06 100644
--- a/pages/Transfer.qml
+++ b/pages/Transfer.qml
@@ -191,8 +191,9 @@ Rectangle {
ListModel {
id: priorityModelV5
+ ListElement { column1: qsTr("Default") ; column2: ""; priority: 0}
ListElement { column1: qsTr("Slow (x0.25 fee)") ; column2: ""; priority: 1}
- ListElement { column1: qsTr("Default (x1 fee)") ; column2: ""; priority: 2 }
+ ListElement { column1: qsTr("Normal (x1 fee)") ; column2: ""; priority: 2 }
ListElement { column1: qsTr("Fast (x5 fee)") ; column2: ""; priority: 3 }
ListElement { column1: qsTr("Fastest (x41.5 fee)") ; column2: ""; priority: 4 }
@@ -642,7 +643,7 @@ Rectangle {
function updatePriorityDropdown() {
priorityDropdown.dataModel = priorityModelV5;
- priorityDropdown.currentIndex = 1
+ priorityDropdown.currentIndex = 0
priorityDropdown.update()
}
diff --git a/qml.qrc b/qml.qrc
index 295b363b..7841eb56 100644
--- a/qml.qrc
+++ b/qml.qrc
@@ -103,31 +103,32 @@
<file>lang/flags/brazil.png</file>
<file>lang/flags/china.png</file>
<file>lang/flags/croatia.png</file>
+ <file>lang/flags/czech.png</file>
+ <file>lang/flags/denmark.png</file>
+ <file>lang/flags/egypt.png</file>
<file>lang/flags/esperanto.png</file>
<file>lang/flags/finland.png</file>
<file>lang/flags/france.png</file>
<file>lang/flags/german.png</file>
<file>lang/flags/india.png</file>
<file>lang/flags/indonesia.png</file>
+ <file>lang/flags/israel.png</file>
<file>lang/flags/italy.png</file>
<file>lang/flags/japan.png</file>
<file>lang/flags/netherlands.png</file>
<file>lang/flags/palestine.png</file>
<file>lang/flags/poland.png</file>
+ <file>lang/flags/romania.png</file>
<file>lang/flags/rpa.png</file>
<file>lang/flags/russia.png</file>
+ <file>lang/flags/slovakia.png</file>
+ <file>lang/flags/slovenia.png</file>
+ <file>lang/flags/south_korea.png</file>
<file>lang/flags/spain.png</file>
<file>lang/flags/sweden.png</file>
<file>lang/flags/taiwan.png</file>
- <file>lang/flags/denmark.png</file>
<file>lang/flags/uk.png</file>
<file>lang/flags/usa.png</file>
- <file>lang/flags/israel.png</file>
- <file>lang/flags/south_korea.png</file>
- <file>lang/flags/romania.png</file>
- <file>lang/flags/czech.png</file>
- <file>lang/flags/slovakia.png</file>
- <file>lang/flags/egypt.png</file>
<file>wizard/WizardManageWalletUI.qml</file>
<file>wizard/WizardRecoveryWallet.qml</file>
<file>wizard/WizardMemoTextInput.qml</file>
diff --git a/src/libwalletqt/UnsignedTransaction.h b/src/libwalletqt/UnsignedTransaction.h
index 6c5a13ec..9530bb4e 100644
--- a/src/libwalletqt/UnsignedTransaction.h
+++ b/src/libwalletqt/UnsignedTransaction.h
@@ -26,13 +26,6 @@ public:
};
Q_ENUM(Status)
- enum Priority {
- Priority_Low = Monero::UnsignedTransaction::Priority_Low,
- Priority_Medium = Monero::UnsignedTransaction::Priority_Medium,
- Priority_High = Monero::UnsignedTransaction::Priority_High
- };
- Q_ENUM(Priority)
-
Status status() const;
QString errorString() const;
Q_INVOKABLE quint64 amount(int index) const;
diff --git a/start-low-graphics-mode.bat b/start-low-graphics-mode.bat
new file mode 100644
index 00000000..c508e1eb
--- /dev/null
+++ b/start-low-graphics-mode.bat
@@ -0,0 +1,5 @@
+@echo off
+
+set QMLSCENE_DEVICE=softwarecontext
+
+start /b monero-wallet-gui.exe
diff --git a/translations/monero-core_fr.ts b/translations/monero-core_fr.ts
index af5b25d0..8d973163 100644
--- a/translations/monero-core_fr.ts
+++ b/translations/monero-core_fr.ts
@@ -11,7 +11,7 @@
<message>
<location filename="../pages/AddressBook.qml" line="56"/>
<source>Qr Code</source>
- <translation type="unfinished"></translation>
+ <translation>Code QR</translation>
</message>
<message>
<location filename="../pages/AddressBook.qml" line="74"/>
@@ -26,7 +26,7 @@
<message>
<location filename="../pages/AddressBook.qml" line="81"/>
<source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;b&gt;ID de Paiement&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Un nom d'utilisateur unique qui a été uilisé dans&lt;br/&gt;le carnet d'adresse. Il n'est pas un&lt;br/&gt;transfert d'information énvoyé&lt;br/&gt;durant le transfert</translation>
</message>
<message>
<location filename="../pages/AddressBook.qml" line="88"/>
@@ -79,7 +79,7 @@
<message>
<location filename="../components/AddressBookTable.qml" line="149"/>
<source>Address copied to clipboard</source>
- <translation type="unfinished"></translation>
+ <translation>Adresse copiée dans le presse-papier</translation>
</message>
</context>
<context>
@@ -123,7 +123,7 @@
<message>
<location filename="../components/DaemonManagerDialog.qml" line="93"/>
<source>Starting local node in %1 seconds</source>
- <translation type="unfinished"></translation>
+ <translation>Lancement du démon local Monero dans %1 secondes</translation>
</message>
<message>
<location filename="../components/DaemonManagerDialog.qml" line="115"/>
@@ -272,7 +272,7 @@
<message>
<location filename="../components/HistoryTable.qml" line="258"/>
<source>(%1/%2 confirmations)</source>
- <translation type="unfinished">(%1/%2 confirmations)</translation>
+ <translation>(%1/%2 confirmations)</translation>
</message>
<message>
<location filename="../components/HistoryTable.qml" line="262"/>
@@ -282,7 +282,7 @@
<message>
<location filename="../components/HistoryTable.qml" line="264"/>
<source>FAILED</source>
- <translation type="unfinished"></translation>
+ <translation>ÉCHEC</translation>
</message>
<message>
<location filename="../components/HistoryTable.qml" line="265"/>
@@ -310,52 +310,52 @@
<message>
<location filename="../components/HistoryTableMobile.qml" line="47"/>
<source>Tx ID:</source>
- <translation type="unfinished">ID transaction :</translation>
+ <translation>ID transaction :</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="48"/>
<source>Payment ID:</source>
- <translation type="unfinished"></translation>
+ <translation>ID de Paiement :</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="49"/>
<source>Tx key:</source>
- <translation type="unfinished">Clé de transaction :</translation>
+ <translation>Clé de transaction :</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="50"/>
<source>Tx note:</source>
- <translation type="unfinished">Note de transaction :</translation>
+ <translation>Note de transaction :</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="51"/>
<source>Destinations:</source>
- <translation type="unfinished">Destinations :</translation>
+ <translation>Destinations :</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="77"/>
<source>No more results</source>
- <translation type="unfinished"></translation>
+ <translation>Plus de résultats</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="150"/>
<source>(%1/%2 confirmations)</source>
- <translation type="unfinished">(%1/%2 confirmations)</translation>
+ <translation>(%1/%2 confirmations)</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="152"/>
<source>UNCONFIRMED</source>
- <translation type="unfinished">NON CONFIRMÉ</translation>
+ <translation>NON CONFIRMÉE</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="154"/>
<source>FAILED</source>
- <translation type="unfinished"></translation>
+ <translation>ÉCHEC</translation>
</message>
<message>
<location filename="../components/HistoryTableMobile.qml" line="155"/>
<source>PENDING</source>
- <translation type="unfinished">EN ATTENTE</translation>
+ <translation>EN ATTENTE</translation>
</message>
</context>
<context>
@@ -363,70 +363,70 @@
<message>
<location filename="../pages/Keys.qml" line="62"/>
<source>Mnemonic seed</source>
- <translation type="unfinished"></translation>
+ <translation>Phrase mnémonique</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="78"/>
<location filename="../pages/Keys.qml" line="112"/>
<source>Double tap to copy</source>
- <translation type="unfinished"></translation>
+ <translation>Double tapez pour copier</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="85"/>
<source>Seed copied to clipboard</source>
- <translation type="unfinished"></translation>
+ <translation>Votre phrase mnémonique a été copié</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="95"/>
<source>Keys</source>
- <translation type="unfinished"></translation>
+ <translation>Clés</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="119"/>
<source>Keys copied to clipboard</source>
- <translation type="unfinished"></translation>
+ <translation>Vos clés ont été copiées</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="129"/>
<source>Export wallet</source>
- <translation type="unfinished"></translation>
+ <translation>Exporter portefeuille</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="142"/>
<location filename="../pages/Keys.qml" line="181"/>
<source>Spendable Wallet</source>
- <translation type="unfinished"></translation>
+ <translation>Portefeuille de dépense</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="150"/>
<location filename="../pages/Keys.qml" line="181"/>
<source>View Only Wallet</source>
- <translation type="unfinished"></translation>
+ <translation>Portefeuille d'audit</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="191"/>
<source>Secret view key</source>
- <translation type="unfinished">Clé secrète d&apos;audit</translation>
+ <translation>Clé secrète d&apos;audit</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="192"/>
<source>Public view key</source>
- <translation type="unfinished">Clé publique d&apos;audit</translation>
+ <translation>Clé publique d&apos;audit</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="193"/>
<source>Secret spend key</source>
- <translation type="unfinished">Clé secrète de dépense</translation>
+ <translation>Clé secrète de dépense</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="194"/>
<source>Public spend key</source>
- <translation type="unfinished">Clé publique de dépense</translation>
+ <translation>Clé publique de dépense</translation>
</message>
<message>
<location filename="../pages/Keys.qml" line="206"/>
<source>(View Only Wallet - No mnemonic seed available)</source>
- <translation type="unfinished"></translation>
+ <translation>(Portefeuille d'audit - phrase mnémonique non disponible)</translation>
</message>
</context>
<context>
@@ -459,7 +459,7 @@
<message>
<location filename="../LeftPanel.qml" line="439"/>
<source>Prove/check</source>
- <translation type="unfinished"></translation>
+ <translation>Prouver/Vérifier</translation>
</message>
<message>
<location filename="../LeftPanel.qml" line="440"/>
@@ -474,7 +474,7 @@
<message>
<location filename="../LeftPanel.qml" line="96"/>
<source>View Only</source>
- <translation type="unfinished"></translation>
+ <translation>Audit</translation>
</message>
<message>
<location filename="../LeftPanel.qml" line="108"/>
@@ -519,12 +519,12 @@
<message>
<location filename="../LeftPanel.qml" line="508"/>
<source>Seed &amp; Keys</source>
- <translation type="unfinished"></translation>
+ <translation>Phrase mnémonique &amp; Clés</translation>
</message>
<message>
<location filename="../LeftPanel.qml" line="509"/>
<source>Y</source>
- <translation type="unfinished"></translation>
+ <translation>Y</translation>
</message>
<message>
<location filename="../LeftPanel.qml" line="463"/>
@@ -671,7 +671,7 @@
<message>
<location filename="../components/NetworkStatusItem.qml" line="55"/>
<source>Remote node</source>
- <translation type="unfinished"></translation>
+ <translation>Démon distant</translation>
</message>
<message>
<location filename="../components/NetworkStatusItem.qml" line="56"/>
@@ -704,22 +704,22 @@
<message>
<location filename="../components/NewPasswordDialog.qml" line="100"/>
<source>Please enter new password</source>
- <translation type="unfinished"></translation>
+ <translation>Veuillez saisir un nouveau mot de passe</translation>
</message>
<message>
<location filename="../components/NewPasswordDialog.qml" line="157"/>
<source>Please confirm new password</source>
- <translation type="unfinished"></translation>
+ <translation>Veuillez confirmer votre nouveau mot de passe</translation>
</message>
<message>
<location filename="../components/NewPasswordDialog.qml" line="231"/>
<source>Cancel</source>
- <translation type="unfinished">Annuler</translation>
+ <translation>Annuler</translation>
</message>
<message>
<location filename="../components/NewPasswordDialog.qml" line="244"/>
<source>Continue</source>
- <translation type="unfinished"></translation>
+ <translation >Continuer</translation>
</message>
</context>
<context>
@@ -742,7 +742,7 @@
<message>
<location filename="../components/PasswordDialog.qml" line="169"/>
<source>Continue</source>
- <translation type="unfinished"></translation>
+ <translation>Continuer</translation>
</message>
</context>
<context>
@@ -786,7 +786,7 @@
<message>
<location filename="../components/QRCodeScanner.qml" line="129"/>
<source>QrCode Scanned</source>
- <translation type="unfinished"></translation>
+ <translation>Code QR Scanné</translation>
</message>
</context>
<context>
@@ -854,7 +854,7 @@
<message>
<location filename="../pages/Receive.qml" line="214"/>
<source>Address copied to clipboard</source>
- <translation type="unfinished"></translation>
+ <translation>Adresse copiée dans le presse-papier</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="235"/>
@@ -864,7 +864,7 @@
<message>
<location filename="../pages/Receive.qml" line="247"/>
<source>Payment ID copied to clipboard</source>
- <translation type="unfinished"></translation>
+ <translation>ID Paiement copié dans le presse-papier</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="270"/>
@@ -879,7 +879,7 @@
<message>
<location filename="../pages/Receive.qml" line="300"/>
<source>Integrated address copied to clipboard</source>
- <translation type="unfinished"></translation>
+ <translation>Adresse intégrée copiée dans le presse-papier</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="320"/>
@@ -889,12 +889,12 @@
<message>
<location filename="../pages/Receive.qml" line="341"/>
<source>Tracking</source>
- <translation type="unfinished"></translation>
+ <translation>Suivi</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="343"/>
<source>help</source>
- <translation type="unfinished"></translation>
+ <translation>Aide</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="348"/>
@@ -947,12 +947,12 @@
<message>
<location filename="../components/RemoteNodeEdit.qml" line="49"/>
<source>Remote Node Hostname / IP</source>
- <translation type="unfinished"></translation>
+ <translation>IP/domaine du démon distant</translation>
</message>
<message>
<location filename="../components/RemoteNodeEdit.qml" line="57"/>
<source>Port</source>
- <translation type="unfinished">Port</translation>
+ <translation>Port</translation>
</message>
</context>
<context>
@@ -1019,54 +1019,60 @@
<message>
<location filename="../pages/Settings.qml" line="498"/>
<source>Debug info</source>
- <translation type="unfinished"></translation>
+ <translation>Info de débogage</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="523"/>
<source>Wallet creation height: </source>
- <translation type="unfinished"></translation>
+ <translation>Hauteur de bloc lors de la création du portefeuille : </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="524"/>
<source> &lt;a href=&apos;#&apos;&gt;(Click to change)&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;a href=&apos;#&apos;&gt;(Cliquer pour changer)&lt;/a&gt;</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="550"/>
<source>Save</source>
- <translation type="unfinished"></translation>
+ <translation>Enregistrer</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="563"/>
<source>Rescan wallet cache</source>
- <translation type="unfinished"></translation>
+ <translation>Rescanner le cache du portefeuille</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="564"/>
<source>Are you sure you want to rebuild the wallet cache?
The following information will be deleted
-- Recipient addresses
+- Recipient adresses
- Tx keys
- Tx descriptions
The old wallet cache file will be renamed and can be restored later.
</source>
- <translation type="unfinished"></translation>
+ <translation>Êtes-vous sûr de vouloir reconstruire le cache du portefeuille
+ Les informations suivantes seront supprimées
+ - Adresses destinataires
+ - Clés de transactions
+ - Descriptions de transactions
+ L'ancien fichier de cache du portefeuille sera renommé et il pourra être restauré plus tard
+ </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="592"/>
<source>Wallet log path: </source>
- <translation type="unfinished"></translation>
+ <translation>Chemin du journal du portefeuille : </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="596"/>
<source>Wallet Name: </source>
- <translation type="unfinished"></translation>
+ <translation>Nom du portefeuille : </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="600"/>
<source>Daemon log path: </source>
- <translation type="unfinished"></translation>
+ <translation>Chemin du journal du démon : </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="618"/>
@@ -1107,57 +1113,57 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/Settings.qml" line="160"/>
<source>Successfully rescanned spent outputs.</source>
- <translation type="unfinished"></translation>
+ <translation>Transactions sortantes rescannées avec succès.</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="170"/>
<source>Change password</source>
- <translation type="unfinished"></translation>
+ <translation>Modifier votre mot de passe</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="201"/>
<source>Local Node</source>
- <translation type="unfinished"></translation>
+ <translation>Démon Local</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="215"/>
<source>Remote Node</source>
- <translation type="unfinished"></translation>
+ <translation>Démon Distant</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="233"/>
<source>Manage Daemon</source>
- <translation type="unfinished"></translation>
+ <translation>Gérer le Démon</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="239"/>
<source>Show advanced</source>
- <translation type="unfinished"></translation>
+ <translation>Montrer Avancés</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="257"/>
<source>Start Local Node</source>
- <translation type="unfinished"></translation>
+ <translation>Lancer un démon local</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="272"/>
<source>Stop Local Node</source>
- <translation type="unfinished"></translation>
+ <translation>Terminer le démon local</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="333"/>
<source>Local daemon startup flags</source>
- <translation type="unfinished"></translation>
+ <translation>Options de lancement pour votre démon local</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="351"/>
<source>Node login (optional)</source>
- <translation type="unfinished"></translation>
+ <translation>Identifiants pour le démon (facultatif)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="382"/>
<source>Remote node</source>
- <translation type="unfinished"></translation>
+ <translation>Démon Distant</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="397"/>
@@ -1290,12 +1296,12 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/Sign.qml" line="387"/>
<source>Signing address</source>
- <translation type="unfinished"></translation>
+ <translation>Adresse du signataire</translation>
</message>
<message>
<location filename="../pages/Sign.qml" line="389"/>
<source>Paste in or select from &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>Coller ou sélectionner dans &lt;a href=&apos;#&apos;&gt;le carnet d'adresses&lt;/a&gt;</translation>
</message>
<message>
<location filename="../pages/Sign.qml" line="160"/>
@@ -1337,12 +1343,12 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../components/StandardDialog.qml" line="122"/>
<source>Double tap to copy</source>
- <translation type="unfinished"></translation>
+ <translation>Double tapez pour copier</translation>
</message>
<message>
<location filename="../components/StandardDialog.qml" line="129"/>
<source>Content copied to clipboard</source>
- <translation type="unfinished"></translation>
+ <translation>Le contenu a été copié</translation>
</message>
<message>
<location filename="../components/StandardDialog.qml" line="147"/>
@@ -1352,7 +1358,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../components/StandardDialog.qml" line="160"/>
<source>OK</source>
- <translation type="unfinished"></translation>
+ <translation>OK</translation>
</message>
</context>
<context>
@@ -1375,22 +1381,22 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../components/StandardDropdown.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
- <translation type="unfinished">Lent (frais x0.25)</translation>
+ <translation>Lent (frais x0.25)</translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="207"/>
<source>Default (x1 fee)</source>
- <translation type="unfinished">Par défaut (frais x1)</translation>
+ <translation>Par défaut (frais x1)</translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="208"/>
<source>Fast (x5 fee)</source>
- <translation type="unfinished">Rapide (frais x5)</translation>
+ <translation>Rapide (frais x5)</translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
- <translation type="unfinished">Très rapide (frais x41.5)</translation>
+ <translation>Très rapide (frais x41.5)</translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="210"/>
@@ -1459,7 +1465,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Default</source>
- <translation type="unfinished"></translation>
+ <translation>Par défaut</translation>
</message>
<message>
<location filename="../components/TickDelegate.qml" line="56"/>
@@ -1610,17 +1616,17 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/Transfer.qml" line="45"/>
<source>Start daemon</source>
- <translation type="unfinished">Lancer démon</translation>
+ <translation>Lancer démon</translation>
</message>
<message>
<location filename="../pages/Transfer.qml" line="220"/>
<source>Address</source>
- <translation type="unfinished">Adresse</translation>
+ <translation>Adresse</translation>
</message>
<message>
<location filename="../pages/Transfer.qml" line="222"/>
<source>Paste in or select from &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>Coller ou sélectionner dans &lt;a href=&apos;#&apos;&gt;le carnet d'adresses&lt;/a&gt;</translation>
</message>
<message>
<location filename="../pages/Transfer.qml" line="538"/>
@@ -1747,7 +1753,9 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<location filename="../pages/TxKey.qml" line="97"/>
<source>Generate a proof of your incoming/outgoing payment by supplying the transaction ID, the recipient address and an optional message.
For the case of outgoing payments, you can get a &apos;Spend Proof&apos; that proves the authorship of a transaction. In this case, you don&apos;t need to specify the recipient address.</source>
- <translation type="unfinished"></translation>
+ <translation> Générer une preuve de votre paiement en fournissant l'ID de transaction, l'adresse du destinataire et un message facultatif.
+ Pour le cas des paiements sortants, vous pouvez obtenir un &apos;Preuve dedépense&apos; qui prouve l'auteur d'une transaction. En ce cas, il ne faut pas spécifier une adresse destinaire.
+ </translation>
</message>
<message>
<location filename="../pages/TxKey.qml" line="140"/>
@@ -1759,34 +1767,35 @@ For the case of outgoing payments, you can get a &apos;Spend Proof&apos; that pr
<location filename="../pages/TxKey.qml" line="159"/>
<location filename="../pages/TxKey.qml" line="271"/>
<source>Message</source>
- <translation type="unfinished"></translation>
+ <translation>Message</translation>
</message>
<message>
<location filename="../pages/TxKey.qml" line="166"/>
<location filename="../pages/TxKey.qml" line="278"/>
<source>Optional message against which the signature is signed</source>
- <translation type="unfinished"></translation>
+ <translation>Message facultatif sur lequel la signature est signée</translation>
</message>
<message>
<location filename="../pages/TxKey.qml" line="186"/>
<source>Generate</source>
- <translation type="unfinished">Générer</translation>
+ <translation>Générer</translation>
</message>
<message>
<location filename="../pages/TxKey.qml" line="209"/>
<source>Verify that funds were paid to an address by supplying the transaction ID, the recipient address, the message used for signing and the signature.
For the case with Spend Proof, you don&apos;t need to specify the recipient address.</source>
- <translation type="unfinished"></translation>
+ <translation> Vérifier que de l'argent a été payé à une adresse en fournissant l'ID de transaction, l'adresse destinaire, le message qui a été utilisé pour la signature et la signature
+Pour le cas d'une preuve de dépense, il n'est pas nécessaire de spécifier l'adresse du destinataire.</translation>
</message>
<message>
<location filename="../pages/TxKey.qml" line="297"/>
<source>Signature</source>
- <translation type="unfinished">Signature</translation>
+ <translation>Signature</translation>
</message>
<message>
<location filename="../pages/TxKey.qml" line="305"/>
<source>Paste tx proof</source>
- <translation type="unfinished"></translation>
+ <translation>Coller preuve de transaction</translation>
</message>
<message>
<location filename="../pages/TxKey.qml" line="106"/>
@@ -1849,7 +1858,7 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
<message>
<location filename="../wizard/WizardCreateViewOnlyWallet.qml" line="68"/>
<source>Create view only wallet</source>
- <translation>Créer portefeuille vue seule</translation>
+ <translation>Créer portefeuille d'audit</translation>
</message>
</context>
<context>
@@ -1865,32 +1874,32 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
<message>
<location filename="../wizard/WizardDaemonSettings.qml" line="114"/>
<source>To be able to communicate with the Monero network your wallet needs to be connected to a Monero node. For best privacy it&apos;s recommended to run your own node. &lt;br&gt;&lt;br&gt; If you don&apos;t have the option to run an own node there&apos;s an option to connect to a remote node.</source>
- <translation type="unfinished"></translation>
+ <translation>Il faut être connecté à un démon Monero pour communiquer avec le réseau Monero. Pour la meilleure confidentialité vous devriez utiliser un démon local. </translation>
</message>
<message>
<location filename="../wizard/WizardDaemonSettings.qml" line="126"/>
<source>Start a node automatically in background (recommended)</source>
- <translation type="unfinished"></translation>
+ <translation>Lancer un démon automatiquement en arrière-plan (conseillé)</translation>
</message>
<message>
<location filename="../wizard/WizardDaemonSettings.qml" line="144"/>
<source>Blockchain location</source>
- <translation type="unfinished">Emplacement de la chaîne de blocs</translation>
+ <translation>Emplacement de la chaîne de blocs</translation>
</message>
<message>
<location filename="../wizard/WizardDaemonSettings.qml" line="151"/>
<source>(optional)</source>
- <translation type="unfinished">(facultatif)</translation>
+ <translation>(facultatif)</translation>
</message>
<message>
<location filename="../wizard/WizardDaemonSettings.qml" line="170"/>
<source>Connect to a remote node until my own node has finished syncing</source>
- <translation type="unfinished"></translation>
+ <translation>Connectez-vous à un démon distant pendant que votre propre démon est en train de se synchroniser</translation>
</message>
<message>
<location filename="../wizard/WizardDaemonSettings.qml" line="171"/>
<source>Connect to a remote node</source>
- <translation type="unfinished"></translation>
+ <translation>Se connecter à un démon distant</translation>
</message>
</context>
<context>
@@ -2024,7 +2033,7 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
<location filename="../wizard/WizardMain.qml" line="403"/>
<source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
%1</source>
- <translation>Le portefeuille en vue seule a été créé. Vous pouvez l&apos;ouvrir en fermant le portefeuille actuel, puis en cliquant sur l&apos;option &quot;Ouvrir un fichier portefeuille&quot; et en sélectionnant le portefeuille en vue seule dans :
+ <translation>Le portefeuille d'audit a été créé. Vous pouvez l&apos;ouvrir en fermant le portefeuille actuel, puis en cliquant sur l&apos;option &quot;Ouvrir un fichier portefeuille&quot; et en sélectionnant le portefeuille d'audit dans :
%1</translation>
</message>
<message>
@@ -2058,7 +2067,7 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
<message>
<location filename="../wizard/WizardManageWalletUI.qml" line="206"/>
<source>From QR Code</source>
- <translation type="unfinished"></translation>
+ <translation>Depuis un Code QR</translation>
</message>
<message>
<location filename="../wizard/WizardManageWalletUI.qml" line="245"/>
@@ -2096,12 +2105,12 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
<message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
- <translation>Entrez votre graine mnémonique de 25 mots</translation>
+ <translation>Entrez votre phrase mnémonique de 25 mots</translation>
</message>
<message>
<location filename="../wizard/WizardMemoTextInput.qml" line="64"/>
<source>Seed copied to clipboard</source>
- <translation type="unfinished"></translation>
+ <translation>Phrase mnémonique copiée</translation>
</message>
<message>
<location filename="../wizard/WizardMemoTextInput.qml" line="92"/>
@@ -2129,7 +2138,7 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
<message>
<location filename="../wizard/WizardOptions.qml" line="182"/>
<source>Restore wallet from keys or mnemonic seed</source>
- <translation>Restaurer un portefeuille à partir des clés ou de la graine mnémonique</translation>
+ <translation>Restaurer un portefeuille à partir des clés ou de la phrase mnémonique</translation>
</message>
<message>
<location filename="../wizard/WizardOptions.qml" line="225"/>
@@ -2154,8 +2163,8 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
<location filename="../wizard/WizardPassword.qml" line="126"/>
<source> &lt;br&gt;Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
&lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
- <translation> &lt;br&gt;Note : ce mot de passe ne pourra pas être recupéré. Si vous l&apos;oubliez vous devrez restaurer votre portefeuille avec sa graine mnémonique de 25 mots.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Entez un mot de passe fort&lt;/b&gt; (utilisant des lettres, chiffres, et/ou symboles) :</translation>
+ <translation> &lt;br&gt;Note : ce mot de passe ne pourra pas être récuperé. Si vous l&apos;oubliez vous devrez restaurer votre portefeuille avec sa phrase mnémonique de 25 mots.&lt;br/&gt;&lt;br/&gt;
+ &lt;b&gt;Entrez un mot de passe fort&lt;/b&gt; (utilisant des lettres, chiffres, et/ou symboles) :</translation>
</message>
</context>
<context>
@@ -2233,7 +2242,7 @@ For the case with Spend Proof, you don&apos;t need to specify the recipient addr
<message>
<location filename="../main.qml" line="435"/>
<source>Remaining blocks (local node):</source>
- <translation type="unfinished"></translation>
+ <translation>Blocs restants (démon local) :</translation>
</message>
<message>
<location filename="../main.qml" line="475"/>
@@ -2330,81 +2339,82 @@ Taille du cercle : </translation>
<message>
<location filename="../main.qml" line="778"/>
<source>Payment proof</source>
- <translation type="unfinished"></translation>
+ <translation>Preuve de Paiement</translation>
</message>
<message>
<location filename="../main.qml" line="781"/>
<source>Couldn&apos;t generate a proof because of the following reason:
</source>
- <translation type="unfinished"></translation>
+ <translation>Impossible de générer une preuve pour la raison suivante :
+</translation>
</message>
<message>
<location filename="../main.qml" line="811"/>
<location filename="../main.qml" line="831"/>
<source>Payment proof check</source>
- <translation type="unfinished"></translation>
+ <translation>Vérification de preuve de paiement</translation>
</message>
<message>
<location filename="../main.qml" line="814"/>
<location filename="../main.qml" line="833"/>
<source>Bad signature</source>
- <translation type="unfinished">Mauvaise signature</translation>
+ <translation>Mauvaise signature</translation>
</message>
<message>
<location filename="../main.qml" line="833"/>
<source>Good signature</source>
- <translation type="unfinished">Bonne signature</translation>
+ <translation>Bonne signature</translation>
</message>
<message>
<location filename="../main.qml" line="1033"/>
<location filename="../main.qml" line="1281"/>
<source>Wrong password</source>
- <translation type="unfinished">Mauvais mot de passe</translation>
+ <translation>Mot de passe incorrect</translation>
</message>
<message>
<location filename="../main.qml" line="1108"/>
<source>Warning</source>
- <translation type="unfinished">Attention</translation>
+ <translation>Attention</translation>
</message>
<message>
<location filename="../main.qml" line="1111"/>
<source>Error: Filesystem is read only</source>
- <translation type="unfinished">Erreur : Système de fichiers en lecture seule</translation>
+ <translation>Erreur : Système de fichiers en lecture seule</translation>
</message>
<message>
<location filename="../main.qml" line="1113"/>
<source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
- <translation type="unfinished">Attention : Il y a seulement %1 GB disponibles sur le périphérique. La chaîne de blocs a besoin de ~%2 GB.</translation>
+ <translation>Attention : Il y a seulement %1 GB disponibles sur le périphérique. La chaîne de blocs a besoin de ~%2 GB.</translation>
</message>
<message>
<location filename="../main.qml" line="1115"/>
<source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
- <translation type="unfinished">Note : Il y a %1 GB disponibles sur le périphérique. La chaîne de blocs a besoin de ~%2 GB.</translation>
+ <translation>Note : Il y a %1 GB disponibles sur le appareil. La chaîne de blocs a besoin de ~%2 GB.</translation>
</message>
<message>
<location filename="../main.qml" line="1117"/>
<source>Note: lmdb folder not found. A new folder will be created.</source>
- <translation type="unfinished">Note : répertoire lmdb non trouvé. Un nouveau répertoire va être créé.</translation>
+ <translation>Note : dossier lmdb non trouvé. Un nouveau répertoire va être créé.</translation>
</message>
<message>
<location filename="../main.qml" line="1121"/>
<source>Cancel</source>
- <translation type="unfinished">Annuler</translation>
+ <translation>Annuler</translation>
</message>
<message>
<location filename="../main.qml" line="1174"/>
<source>Password changed successfully</source>
- <translation type="unfinished"></translation>
+ <translation>Mot de passe changé avec succès</translation>
</message>
<message>
<location filename="../main.qml" line="1178"/>
<source>Error: </source>
- <translation type="unfinished">Erreur : </translation>
+ <translation>Erreur : </translation>
</message>
<message>
<location filename="../main.qml" line="1599"/>
<source>Tap again to close...</source>
- <translation type="unfinished"></translation>
+ <translation>Tapez encore pour fermer...</translation>
</message>
<message>
<location filename="../main.qml" line="1612"/>
@@ -2435,7 +2445,7 @@ Taille du cercle : </translation>
<location filename="../main.qml" line="313"/>
<location filename="../main.qml" line="314"/>
<source>HIDDEN</source>
- <translation type="unfinished"></translation>
+ <translation>CACHÉ</translation>
</message>
<message>
<location filename="../main.qml" line="593"/>
diff --git a/translations/monero-core_sl.ts b/translations/monero-core_sl.ts
new file mode 100644
index 00000000..0c45dfb4
--- /dev/null
+++ b/translations/monero-core_sl.ts
@@ -0,0 +1,2525 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="sl_SI">
+<context>
+ <name>AddressBook</name>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="50"/>
+ <source>Address</source>
+ <translation>Naslov</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="56"/>
+ <source>Qr Code</source>
+ <translation>QR koda</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="74"/>
+ <source>4...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="80"/>
+ <source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
+ <translation>ID plačila &lt;font size=&apos;2&apos;&gt;(neobvezno)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="81"/>
+ <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="88"/>
+ <source>Paste 64 hexadecimal characters</source>
+ <translation>Prilepi 64 šestnajstiških znakov</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="93"/>
+ <source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="99"/>
+ <source>Give this entry a name or description</source>
+ <translation>Poimenuj oz. opiši vnos</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="111"/>
+ <source>Add</source>
+ <translation>Dodaj</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="116"/>
+ <source>Error</source>
+ <translation>Napaka</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="119"/>
+ <source>Invalid address</source>
+ <translation>Neveljaven naslov</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="123"/>
+ <source>Can&apos;t create entry</source>
+ <translation>Vnosa ne morem ustvariti</translation>
+ </message>
+</context>
+<context>
+ <name>AddressBookTable</name>
+ <message>
+ <location filename="../components/AddressBookTable.qml" line="47"/>
+ <source>No more results</source>
+ <translation>Ni dodatnih rezultatov</translation>
+ </message>
+ <message>
+ <location filename="../components/AddressBookTable.qml" line="104"/>
+ <source>Payment ID:</source>
+ <translation>ID plačila:</translation>
+ </message>
+ <message>
+ <location filename="../components/AddressBookTable.qml" line="149"/>
+ <source>Address copied to clipboard</source>
+ <translation>Naslov je skopiran v odložišče</translation>
+ </message>
+</context>
+<context>
+ <name>BasicPanel</name>
+ <message>
+ <location filename="../BasicPanel.qml" line="97"/>
+ <source>Locked Balance:</source>
+ <translation>Zaklenjeno stanje:</translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="110"/>
+ <source>78.9239845</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="133"/>
+ <source>Available Balance:</source>
+ <translation>Na voljo:</translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="146"/>
+ <source>2324.9239845</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DaemonConsole</name>
+ <message>
+ <location filename="../components/DaemonConsole.qml" line="117"/>
+ <source>Close</source>
+ <translation>Zapri</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonConsole.qml" line="128"/>
+ <source>command + enter (e.g help)</source>
+ <translation>ukaz + potrdi (npr. pomoč)</translation>
+ </message>
+</context>
+<context>
+ <name>DaemonManagerDialog</name>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="93"/>
+ <source>Starting local node in %1 seconds</source>
+ <translation>Lokalno vozlišče se bo zagnalo v %1 sekundah</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="115"/>
+ <source>Start daemon (%1)</source>
+ <translation>Zaženi prikriti proces (%1)</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="132"/>
+ <source>Use custom settings</source>
+ <translation>Nastavitve po meri</translation>
+ </message>
+</context>
+<context>
+ <name>Dashboard</name>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="57"/>
+ <source>Quick transfer</source>
+ <translation>Hitri prenos</translation>
+ </message>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="89"/>
+ <source>SEND</source>
+ <translation>POŠLJI</translation>
+ </message>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="102"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; looking for security level and address book? go to &lt;a href=&apos;#&apos;&gt;Transfer&lt;/a&gt; tab</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DashboardTable</name>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="47"/>
+ <source>No more results</source>
+ <translation>Ni dodatnih rezultatov</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="137"/>
+ <source>Date</source>
+ <translation>Datum</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="170"/>
+ <source>Balance</source>
+ <translation>Stanje</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="190"/>
+ <source>Amount</source>
+ <translation>Znesek</translation>
+ </message>
+</context>
+<context>
+ <name>History</name>
+ <message>
+ <location filename="../pages/History.qml" line="70"/>
+ <source> selected: </source>
+ <translation> izbran:</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="135"/>
+ <source>Filter transaction history</source>
+ <translation>Filtriraj zgodovino transakcij</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="159"/>
+ <source>Type for incremental search...</source>
+ <translation>Tipkaj za sprotno iskanje...</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="252"/>
+ <source>Filter</source>
+ <translation>Filter</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="199"/>
+ <source>Date from</source>
+ <translation>Datum od</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="225"/>
+ <location filename="../pages/History.qml" line="379"/>
+ <source>To</source>
+ <translation>do</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="290"/>
+ <source>Advanced filtering</source>
+ <translation>Napredno filtriranje</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="310"/>
+ <source>Type of transaction</source>
+ <translation>Vrsta transakcije</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="346"/>
+ <source>Amount from</source>
+ <translation>Znesek od</translation>
+ </message>
+</context>
+<context>
+ <name>HistoryTable</name>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="48"/>
+ <source>Tx ID:</source>
+ <translation>ID transakcije:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="49"/>
+ <location filename="../components/HistoryTable.qml" line="195"/>
+ <source>Payment ID:</source>
+ <translation>ID plačila:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="50"/>
+ <source>Tx key:</source>
+ <translation>Ključ transakcije:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="51"/>
+ <source>Tx note:</source>
+ <translation>Opomba transakcije:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="52"/>
+ <source>Destinations:</source>
+ <translation>Destinacije:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="78"/>
+ <source>No more results</source>
+ <translation>Ni dodatnih rezultatov</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="102"/>
+ <source>Details</source>
+ <translation>Podrobnosti</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="243"/>
+ <source>BlockHeight:</source>
+ <translation>Višina bloka:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="258"/>
+ <source>(%1/%2 confirmations)</source>
+ <translation>(%1/%2 potrditev)</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="262"/>
+ <source>UNCONFIRMED</source>
+ <translation>NEPOTRJENO</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="264"/>
+ <source>FAILED</source>
+ <translation>NEUSPEŠNO</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="265"/>
+ <source>PENDING</source>
+ <translation>V TEKU</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="294"/>
+ <source>Date</source>
+ <translation>Datum</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="351"/>
+ <source>Amount</source>
+ <translation>Znesek</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="386"/>
+ <source>Fee</source>
+ <translation>Provizija</translation>
+ </message>
+</context>
+<context>
+ <name>HistoryTableMobile</name>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="47"/>
+ <source>Tx ID:</source>
+ <translation>ID transakcije:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="48"/>
+ <source>Payment ID:</source>
+ <translation>ID plačila:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="49"/>
+ <source>Tx key:</source>
+ <translation>Ključ transakcije:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="50"/>
+ <source>Tx note:</source>
+ <translation>Opomba transakcije:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="51"/>
+ <source>Destinations:</source>
+ <translation>Destinacije:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="77"/>
+ <source>No more results</source>
+ <translation>Ni dodatnih rezultatov</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="150"/>
+ <source>(%1/%2 confirmations)</source>
+ <translation>(%1/%2 potrditev)</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="152"/>
+ <source>UNCONFIRMED</source>
+ <translation>NEPOTRJENO</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="154"/>
+ <source>FAILED</source>
+ <translation>NEUSPEŠNO</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTableMobile.qml" line="155"/>
+ <source>PENDING</source>
+ <translation>V TEKU</translation>
+ </message>
+</context>
+<context>
+ <name>Keys</name>
+ <message>
+ <location filename="../pages/Keys.qml" line="62"/>
+ <source>Mnemonic seed</source>
+ <translation>Mnemonično seme</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="78"/>
+ <location filename="../pages/Keys.qml" line="112"/>
+ <source>Double tap to copy</source>
+ <translation>Dvakrat se dotaknite za kopiranje</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="85"/>
+ <source>Seed copied to clipboard</source>
+ <translation>Seme je skopirano v odložišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="95"/>
+ <source>Keys</source>
+ <translation>Ključi</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="119"/>
+ <source>Keys copied to clipboard</source>
+ <translation>Ključi skopirani v odložišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="129"/>
+ <source>Export wallet</source>
+ <translation>Izvozi denarnico</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="142"/>
+ <location filename="../pages/Keys.qml" line="181"/>
+ <source>Spendable Wallet</source>
+ <translation type="unfinished">denarnica za potrošit</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="150"/>
+ <location filename="../pages/Keys.qml" line="181"/>
+ <source>View Only Wallet</source>
+ <translation type="unfinished">Denarnica samo na vpogled</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="191"/>
+ <source>Secret view key</source>
+ <translation type="unfinished">Skrivni ključ za vpogled</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="192"/>
+ <source>Public view key</source>
+ <translation type="unfinished">Javni ključ za vpogled</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="193"/>
+ <source>Secret spend key</source>
+ <translation type="unfinished">Skrivni ključ za porabo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="194"/>
+ <source>Public spend key</source>
+ <translation type="unfinished">Javni ključ za porabo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Keys.qml" line="206"/>
+ <source>(View Only Wallet - No mnemonic seed available)</source>
+ <translation type="unfinished">(Denarnica samo na vpogled - mnemonično seme ni na voljo)</translation>
+ </message>
+</context>
+<context>
+ <name>LeftPanel</name>
+ <message>
+ <location filename="../LeftPanel.qml" line="147"/>
+ <source>Balance</source>
+ <translation>Stanje</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="192"/>
+ <source>Unlocked balance</source>
+ <translation>Odklenjeno stanje</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="295"/>
+ <source>Send</source>
+ <translation>Pošlji</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="345"/>
+ <source>Receive</source>
+ <translation>Prejmi</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="346"/>
+ <source>R</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="439"/>
+ <source>Prove/check</source>
+ <translation>Dokaži/preveri</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="440"/>
+ <source>K</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="369"/>
+ <source>History</source>
+ <translation>Zgodovina</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="96"/>
+ <source>View Only</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="108"/>
+ <source>Testnet</source>
+ <translation type="unfinished">Testna mreža</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="320"/>
+ <source>Address book</source>
+ <translation>Imenik</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="321"/>
+ <source>B</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="370"/>
+ <source>H</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="392"/>
+ <source>Advanced</source>
+ <translation>Napredno</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="393"/>
+ <source>D</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="415"/>
+ <source>Mining</source>
+ <translation>Rudarjenje</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="416"/>
+ <source>M</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="508"/>
+ <source>Seed &amp; Keys</source>
+ <translation>Seme &amp; ključi</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="509"/>
+ <source>Y</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="463"/>
+ <source>Sign/verify</source>
+ <translation>Podpiši/preveri</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="487"/>
+ <source>E</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="296"/>
+ <source>S</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="464"/>
+ <source>I</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="486"/>
+ <source>Settings</source>
+ <translation>Nastavitve</translation>
+ </message>
+</context>
+<context>
+ <name>MiddlePanel</name>
+ <message>
+ <location filename="../MiddlePanel.qml" line="47"/>
+ <source>Balance</source>
+ <translation>Stanje</translation>
+ </message>
+ <message>
+ <location filename="../MiddlePanel.qml" line="49"/>
+ <source>Unlocked Balance</source>
+ <translation>Odklenjeno stanje</translation>
+ </message>
+</context>
+<context>
+ <name>Mining</name>
+ <message>
+ <location filename="../pages/Mining.qml" line="70"/>
+ <source>Solo mining</source>
+ <translation>Posamično rudarjenje</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="77"/>
+ <source>(only available for local daemons)</source>
+ <translation>(na voljo samo za lokalne prikrite procese)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="83"/>
+ <source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
+ <translation>Rudarjenje na vašem računalniku krepi omrežje Monero. Več ljudi rudari, težje je napasti omrežje. Vsak prispevek pomaga.&lt;br&gt; &lt;br&gt;Z rudarjenjem imate tudi manjšo možnost pridobitve nekaj Monera. Vaš računalnik bo z računanjem zgoščenih vrednosti iskal rešitev za nastanek bloka. Če najdete blok, boste prejeli z njim povezano nagrado . Srečno!</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="93"/>
+ <source>CPU threads</source>
+ <translation>CPE niti</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="101"/>
+ <source>(optional)</source>
+ <translation>(neobvezno)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="113"/>
+ <source>Background mining (experimental)</source>
+ <translation>Rudarjenje v ozadju (eksperimentalno)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="129"/>
+ <source>Enable mining when running on battery</source>
+ <translation>Omogoči rudarjenje tudi na baterijskem napajanju</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="139"/>
+ <source>Manage miner</source>
+ <translation>Uredi rudarjenje</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="148"/>
+ <source>Start mining</source>
+ <translation>Zaženi rudarjenje</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="158"/>
+ <source>Error starting mining</source>
+ <translation>Napaka pri zagonu rudarjenja</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="159"/>
+ <source>Couldn&apos;t start mining.&lt;br&gt;</source>
+ <translation>Zagon rudarjenja neuspešen.&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="161"/>
+ <source>Mining is only available on local daemons. Run a local daemon to be able to mine.&lt;br&gt;</source>
+ <translation>Rudarjenje je mogoče samo z lokalnim prikritim procesom. Omogočeno bo z zagonom lokalnega procesa.&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="173"/>
+ <source>Stop mining</source>
+ <translation>Ustavi rudarjenje</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="188"/>
+ <source>Status: not mining</source>
+ <translation>Status: ne rudarim</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="199"/>
+ <source>Mining at %1 H/s</source>
+ <translation>Hitrost rudarjenja %s H/s</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="202"/>
+ <source>Not mining</source>
+ <translation>Ne rudarim</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="204"/>
+ <source>Status: </source>
+ <translation>Status: </translation>
+ </message>
+</context>
+<context>
+ <name>MobileHeader</name>
+ <message>
+ <location filename="../components/MobileHeader.qml" line="92"/>
+ <source>Unlocked Balance:</source>
+ <translation>Odklenjeno stanje:</translation>
+ </message>
+</context>
+<context>
+ <name>NetworkStatusItem</name>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="53"/>
+ <source>Synchronizing</source>
+ <translation>Sinhroniziram</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="55"/>
+ <source>Remote node</source>
+ <translation>Oddaljeno vozlišče</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="56"/>
+ <source>Connected</source>
+ <translation>Povezan</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="59"/>
+ <source>Wrong version</source>
+ <translation>Napačna verzija</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="61"/>
+ <source>Disconnected</source>
+ <translation>Prekinjen</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="62"/>
+ <source>Invalid connection status</source>
+ <translation>Nepravilen status povezave</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="91"/>
+ <source>Network status</source>
+ <translation>Status omrežja</translation>
+ </message>
+</context>
+<context>
+ <name>NewPasswordDialog</name>
+ <message>
+ <location filename="../components/NewPasswordDialog.qml" line="100"/>
+ <source>Please enter new password</source>
+ <translation>Vnesi novo geslo</translation>
+ </message>
+ <message>
+ <location filename="../components/NewPasswordDialog.qml" line="157"/>
+ <source>Please confirm new password</source>
+ <translation>Potrdi novo geslo</translation>
+ </message>
+ <message>
+ <location filename="../components/NewPasswordDialog.qml" line="231"/>
+ <source>Cancel</source>
+ <translation>Prekliči</translation>
+ </message>
+ <message>
+ <location filename="../components/NewPasswordDialog.qml" line="244"/>
+ <source>Continue</source>
+ <translation>Nadaljuj</translation>
+ </message>
+</context>
+<context>
+ <name>PasswordDialog</name>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="88"/>
+ <source>Please enter wallet password</source>
+ <translation>Vnesite geslo denarnice</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="88"/>
+ <source>Please enter wallet password for:&lt;br&gt;</source>
+ <translation>Vnesite geslo denarnice za:&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="156"/>
+ <source>Cancel</source>
+ <translation>Prekliči</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="169"/>
+ <source>Continue</source>
+ <translation>Nadaljuj</translation>
+ </message>
+</context>
+<context>
+ <name>PrivacyLevelSmall</name>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="100"/>
+ <source>Low</source>
+ <translation>Nizek</translation>
+ </message>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="109"/>
+ <source>Medium</source>
+ <translation>Srednji</translation>
+ </message>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="118"/>
+ <source>High</source>
+ <translation>Visok</translation>
+ </message>
+</context>
+<context>
+ <name>ProgressBar</name>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="41"/>
+ <source>Establishing connection...</source>
+ <translation>Vzpostavljam povezavo...</translation>
+ </message>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="58"/>
+ <source>Blocks remaining: %1</source>
+ <translation>Preostali bloki: %1</translation>
+ </message>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="109"/>
+ <source>Synchronizing blocks</source>
+ <translation>Sinhroniziranje blokov</translation>
+ </message>
+</context>
+<context>
+ <name>QRCodeScanner</name>
+ <message>
+ <location filename="../components/QRCodeScanner.qml" line="129"/>
+ <source>QrCode Scanned</source>
+ <translation>QR koda odčitana</translation>
+ </message>
+</context>
+<context>
+ <name>Receive</name>
+ <message>
+ <location filename="../pages/Receive.qml" line="64"/>
+ <source>Invalid payment ID</source>
+ <translation>Neveljaven ID plačila</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="113"/>
+ <source>WARNING: no connection to daemon</source>
+ <translation>OPOZORILO: ni povezave do prikritega procesa</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="135"/>
+ <source>in the txpool: %1</source>
+ <translation>v bazenu transakcij: %1</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="142"/>
+ <source>%2 confirmations: %3 (%1)</source>
+ <translation>%2 potrditev: %3 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="144"/>
+ <source>1 confirmation: %2 (%1)</source>
+ <translation>1 potrditev: %2 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="152"/>
+ <source>No transaction found yet...</source>
+ <translation>Še ni najdenih transakcij...</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="156"/>
+ <source>Transaction found</source>
+ <translation>Transakcija najdena</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="156"/>
+ <source>%1 transactions found</source>
+ <translation>%1 transakcij najdenih</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="162"/>
+ <source> with more money (%1)</source>
+ <translation>z več denarja (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="164"/>
+ <source> with not enough money (%1)</source>
+ <translation> s premalo denarja (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="195"/>
+ <source>Address</source>
+ <translation>Naslov</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="202"/>
+ <source>ReadOnly wallet address displayed here</source>
+ <translation>Naslov ReadOnly denarnice je prikazan tu</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="214"/>
+ <source>Address copied to clipboard</source>
+ <translation>Naslov skopiran v odložišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="235"/>
+ <source>16 hexadecimal characters</source>
+ <translation>16 šestnajstiških znakov</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="247"/>
+ <source>Payment ID copied to clipboard</source>
+ <translation>ID plačila je skopiran v odložišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="270"/>
+ <source>Clear</source>
+ <translation>Izbriši</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="279"/>
+ <source>Integrated address</source>
+ <translation>Integriran naslov</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="300"/>
+ <source>Integrated address copied to clipboard</source>
+ <translation>Integriran naslov je skopiran v odložišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="320"/>
+ <source>Amount to receive</source>
+ <translation>Željen (prejet) znesek</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="341"/>
+ <source>Tracking</source>
+ <translation>Sledenje</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="343"/>
+ <source>help</source>
+ <translation>pomoč</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="348"/>
+ <source>Tracking payments</source>
+ <translation>Sledenje plačilom</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="349"/>
+ <source>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;This is a simple sales tracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Click Generate to create a random payment id for a new customer&lt;/p&gt; &lt;p&gt;Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).&lt;/p&gt;&lt;p&gt;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.&lt;/p&gt;It&apos;s up to you whether to accept unconfirmed transactions or not. It is likely they&apos;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).&lt;/p&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="393"/>
+ <source>Save QrCode</source>
+ <translation>Shrani QR kodo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="394"/>
+ <source>Failed to save QrCode to </source>
+ <translation>Neuspešno shranil QR kodo v </translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="405"/>
+ <source>Save As</source>
+ <translation>Shrani kot</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="227"/>
+ <source>Payment ID</source>
+ <translation>ID plačila</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="259"/>
+ <source>Generate</source>
+ <translation>Ustvari</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="288"/>
+ <source>Generate payment ID for integrated address</source>
+ <translation>Ustvari ID plačila za intergriran naslov</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="312"/>
+ <source>Amount</source>
+ <translation>Znesek</translation>
+ </message>
+</context>
+<context>
+ <name>RemoteNodeEdit</name>
+ <message>
+ <location filename="../components/RemoteNodeEdit.qml" line="49"/>
+ <source>Remote Node Hostname / IP</source>
+ <translation>Ime oddaljenega vozlišča / IP</translation>
+ </message>
+ <message>
+ <location filename="../components/RemoteNodeEdit.qml" line="57"/>
+ <source>Port</source>
+ <translation>Vrata</translation>
+ </message>
+</context>
+<context>
+ <name>SearchInput</name>
+ <message>
+ <location filename="../components/SearchInput.qml" line="69"/>
+ <source>Search by...</source>
+ <translation>Išči pod...</translation>
+ </message>
+ <message>
+ <location filename="../components/SearchInput.qml" line="228"/>
+ <source>SEARCH</source>
+ <translation>ISKANJE</translation>
+ </message>
+</context>
+<context>
+ <name>Settings</name>
+ <message>
+ <location filename="../pages/Settings.qml" line="96"/>
+ <source>Create view only wallet</source>
+ <translation>Ustvari view only denarnico</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="285"/>
+ <source>Show status</source>
+ <translation>Prikaži status</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="310"/>
+ <location filename="../pages/Settings.qml" line="340"/>
+ <source>(optional)</source>
+ <translation>(neobvezno)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="145"/>
+ <source>Rescan wallet balance</source>
+ <translation>Osveži stanje denarnice</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="154"/>
+ <source>Error: </source>
+ <translation>Napaka: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="159"/>
+ <source>Information</source>
+ <translation>Informacija</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="303"/>
+ <source>Blockchain location</source>
+ <translation>Blockchain lokacija</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="363"/>
+ <source>Username</source>
+ <translation>Uporabnik</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="372"/>
+ <source>Password</source>
+ <translation>Geslo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="397"/>
+ <source>Connect</source>
+ <translation>Poveži</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="421"/>
+ <source>Layout settings</source>
+ <translation type="unfinished">Nastavitve razporeditev</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="439"/>
+ <source>Custom decorations</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="450"/>
+ <source>Log level</source>
+ <translation>Nivo beleženja</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="482"/>
+ <source>(e.g. *:WARNING,net.p2p:DEBUG)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="160"/>
+ <source>Successfully rescanned spent outputs.</source>
+ <translation type="unfinished">Uspešno poskeniral potrošene izhode.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="170"/>
+ <source>Change password</source>
+ <translation>Spremeni geslo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="181"/>
+ <source>Wrong password</source>
+ <translation>Napačno geslo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="201"/>
+ <source>Local Node</source>
+ <translation>Lokalno vozlišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="215"/>
+ <source>Remote Node</source>
+ <translation>Oddaljeno vozlišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="233"/>
+ <source>Manage Daemon</source>
+ <translation>Upravljaj prikriti proces</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="239"/>
+ <source>Show advanced</source>
+ <translation>Prikaži napredno</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="257"/>
+ <source>Start Local Node</source>
+ <translation>Zaženi lokalno vozlišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="272"/>
+ <source>Stop Local Node</source>
+ <translation>Ustavi lokalno vozlišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="333"/>
+ <source>Local daemon startup flags</source>
+ <translation>Zagonske zastavice</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="351"/>
+ <source>Node login (optional)</source>
+ <translation>Vozliščna prijava (neobvezno)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="382"/>
+ <source>Remote node</source>
+ <translation>Oddaljeno vozlišče</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="498"/>
+ <source>Debug info</source>
+ <translation type="unfinished">Informacije o produktu</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="512"/>
+ <source>GUI version: </source>
+ <translation>Verzija grafičnega vmesnika: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="517"/>
+ <source>Embedded Monero version: </source>
+ <translation>Vgrajena verzija Monera: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="523"/>
+ <source>Wallet creation height: </source>
+ <translation>Denarnica ustvarjena od bloka: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="524"/>
+ <source> &lt;a href=&apos;#&apos;&gt;(Click to change)&lt;/a&gt;</source>
+ <translation> &lt;a href=&apos;#&apos;&gt;(Klikni za spremembo)&lt;/a&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="550"/>
+ <source>Save</source>
+ <translation>Shrani</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="563"/>
+ <source>Rescan wallet cache</source>
+ <translation>Osveži predpomnilnik denarnice</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="564"/>
+ <source>Are you sure you want to rebuild the wallet cache?
+The following information will be deleted
+- Recipient addresses
+- Tx keys
+- Tx descriptions
+
+The old wallet cache file will be renamed and can be restored later.
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="592"/>
+ <source>Wallet log path: </source>
+ <translation type="unfinished">Pot dnevnika denarnice: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="596"/>
+ <source>Wallet Name: </source>
+ <translation>Ime denarnice: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="600"/>
+ <source>Daemon log path: </source>
+ <translation type="unfinished">Pot dnevnika prikritega procesa: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="609"/>
+ <source>Daemon log</source>
+ <translation type="unfinished">Dnevnik prikritega procesa</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="618"/>
+ <source>Please choose a folder</source>
+ <translation>Izberi mapo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="627"/>
+ <source>Warning</source>
+ <translation>Opozorilo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="630"/>
+ <source>Error: Filesystem is read only</source>
+ <translation>Napaka: datotečni sistem omogoča samo branje</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="634"/>
+ <source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation>Opozorilo: Na napravi je na voljo samo %1 GB prostora. Blockchain zahteva ~%2 GB podatkov.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="636"/>
+ <source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation>Opomba: Na napravi je na voljo samo %1 GB prostora. Blockchain zahteva ~%2 GB podatkov.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="640"/>
+ <source>Note: lmdb folder not found. A new folder will be created.</source>
+ <translation>Opomba: ne najdem mape lmdb. Ustvarjena bo nova mapa.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="572"/>
+ <location filename="../pages/Settings.qml" line="644"/>
+ <source>Cancel</source>
+ <translation>Prekliči</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="153"/>
+ <location filename="../pages/Settings.qml" line="180"/>
+ <source>Error</source>
+ <translation>Napaka</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="66"/>
+ <source>Manage wallet</source>
+ <translation>Upravljaj denarnico</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="81"/>
+ <source>Close wallet</source>
+ <translation>Zapri denarnico</translation>
+ </message>
+</context>
+<context>
+ <name>Sign</name>
+ <message>
+ <location filename="../pages/Sign.qml" line="64"/>
+ <source>Good signature</source>
+ <translation type="unfinished">Dober/pravilen podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="65"/>
+ <source>This is a good signature</source>
+ <translation type="unfinished">To je dober/pravilen podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="69"/>
+ <source>Bad signature</source>
+ <translation type="unfinished">Slab podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="70"/>
+ <source>This signature did not verify</source>
+ <translation type="unfinished">Podpis se ni (uspešno?) preveril</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="106"/>
+ <source>Sign a message or file contents with your address:</source>
+ <translation type="unfinished">Podpiši sporočilo ali vsebino datoteke z svojim naslovom:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="115"/>
+ <location filename="../pages/Sign.qml" line="272"/>
+ <source>Either message:</source>
+ <translation type="unfinished">bodisi sporočilo:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="128"/>
+ <source>Message to sign</source>
+ <translation type="unfinished">Sporočilo za podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="145"/>
+ <location filename="../pages/Sign.qml" line="215"/>
+ <source>Sign</source>
+ <translation type="unfinished">Podpiši</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="171"/>
+ <source>Please choose a file to sign</source>
+ <translation type="unfinished">Izberi datoteko za podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="183"/>
+ <location filename="../pages/Sign.qml" line="340"/>
+ <source>Select</source>
+ <translation type="unfinished">Izberi</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="302"/>
+ <location filename="../pages/Sign.qml" line="371"/>
+ <source>Verify</source>
+ <translation type="unfinished">Preveri</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="328"/>
+ <source>Please choose a file to verify</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="387"/>
+ <source>Signing address</source>
+ <translation type="unfinished">Naslov za podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="389"/>
+ <source>Paste in or select from &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;</source>
+ <translation type="unfinished">Prilepi ali izberi iz &lt;a href=&apos;#&apos;&gt;imenika&lt;/a&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="160"/>
+ <location filename="../pages/Sign.qml" line="317"/>
+ <source>Or file:</source>
+ <translation type="unfinished">Ali datoteka:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="197"/>
+ <source>Filename with message to sign</source>
+ <translation type="unfinished">Datoteka s sporočilom za podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="234"/>
+ <location filename="../pages/Sign.qml" line="239"/>
+ <location filename="../pages/Sign.qml" line="415"/>
+ <location filename="../pages/Sign.qml" line="420"/>
+ <source>Signature</source>
+ <translation type="unfinished">Podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="262"/>
+ <source>Verify a message or file signature from an address:</source>
+ <translation type="unfinished">Preveri sporočilo ali podpisano datoteko z naslova:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="285"/>
+ <source>Message to verify</source>
+ <translation type="unfinished">Sporočilo za preveriti</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="354"/>
+ <source>Filename with message to verify</source>
+ <translation type="unfinished">Datoteka s sporočilom za preveriti</translation>
+ </message>
+</context>
+<context>
+ <name>StandardDialog</name>
+ <message>
+ <location filename="../components/StandardDialog.qml" line="122"/>
+ <source>Double tap to copy</source>
+ <translation>Dvakrat se dotaknite za kopiranje</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDialog.qml" line="129"/>
+ <source>Content copied to clipboard</source>
+ <translation>Vsebina skopirana v odložišče</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDialog.qml" line="147"/>
+ <source>Cancel</source>
+ <translation>Prekliči</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDialog.qml" line="160"/>
+ <source>OK</source>
+ <translation>V redu</translation>
+ </message>
+</context>
+<context>
+ <name>StandardDropdown</name>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Low (x1 fee)</source>
+ <translation>Nizka (x1 provizija)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
+ <source>Medium (x20 fee)</source>
+ <translation>Srednja (x20 provizija)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
+ <source>High (x166 fee)</source>
+ <translation>Visoka (x166 provizija)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>Počasno (x0.25 provizija)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="207"/>
+ <source>Default (x1 fee)</source>
+ <translation>Privzeto (x1 provizija)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="208"/>
+ <source>Fast (x5 fee)</source>
+ <translation>Hitro (x5 provizija)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="209"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>Najhitreje (x41,5 provizija)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="210"/>
+ <source>All</source>
+ <translation>Vsi</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="211"/>
+ <source>Sent</source>
+ <translation>Poslano</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="212"/>
+ <source>Received</source>
+ <translation>Prejeto</translation>
+ </message>
+</context>
+<context>
+ <name>TableDropdown</name>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="182"/>
+ <source>&lt;b&gt;Copy address to clipboard&lt;/b&gt;</source>
+ <translation>&lt;b&gt;Kopiraj naslov v odložišče&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="183"/>
+ <source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
+ <translation>&lt;b&gt;Pošlji na ta naslov&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="184"/>
+ <source>&lt;b&gt;Find similar transactions&lt;/b&gt;</source>
+ <translation>&lt;b&gt;Najdi podobne transakcije&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="185"/>
+ <source>&lt;b&gt;Remove from address book&lt;/b&gt;</source>
+ <translation>&lt;b&gt;Odstrani iz imenika&lt;/b&gt;</translation>
+ </message>
+</context>
+<context>
+ <name>TableHeader</name>
+ <message>
+ <location filename="../components/TableHeader.qml" line="65"/>
+ <source>Payment ID</source>
+ <translation>ID plačila</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="66"/>
+ <source>Date</source>
+ <translation>Datum</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="67"/>
+ <source>Block height</source>
+ <translation>Višina bloka</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="68"/>
+ <source>Amount</source>
+ <translation>Znesek</translation>
+ </message>
+</context>
+<context>
+ <name>TickDelegate</name>
+ <message>
+ <location filename="../components/TickDelegate.qml" line="55"/>
+ <source>Default</source>
+ <translation>Privzeto</translation>
+ </message>
+ <message>
+ <location filename="../components/TickDelegate.qml" line="56"/>
+ <source>High</source>
+ <translation>Visok</translation>
+ </message>
+</context>
+<context>
+ <name>Transfer</name>
+ <message>
+ <location filename="../pages/Transfer.qml" line="69"/>
+ <source>OpenAlias error</source>
+ <translation>OpenAlias napaka</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="81"/>
+ <source>Privacy level (ringsize %1)</source>
+ <translation type="unfinished">Nivo zasebnosti (ringsize %1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="129"/>
+ <source>Amount</source>
+ <translation>Znesek</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="181"/>
+ <source>Transaction priority</source>
+ <translation>Prioriteta transakcije</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="164"/>
+ <source>All</source>
+ <translation>Vsi</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="45"/>
+ <source>Start daemon</source>
+ <translation>Zaženi prikriti proces</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="220"/>
+ <source>Address</source>
+ <translation>Naslov</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="222"/>
+ <source>Paste in or select from &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;</source>
+ <translation type="unfinished">Prilepi ali izberi iz &lt;a href=&apos;#&apos;&gt;imenika&lt;/a&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="235"/>
+ <source>QR Code</source>
+ <translation>QR koda</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="259"/>
+ <source>Resolve</source>
+ <translation>Razreši</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="277"/>
+ <source>No valid address found at this OpenAlias address</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="282"/>
+ <source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="284"/>
+ <source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="287"/>
+ <location filename="../pages/Transfer.qml" line="290"/>
+ <source>Internal error</source>
+ <translation>Notranja napaka</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="293"/>
+ <source>No address found</source>
+ <translation>Ne najdem naslova</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="312"/>
+ <source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
+ <translation>Opis &lt;font size=&apos;2&apos;&gt;( neobvezno )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="318"/>
+ <source>Saved to local wallet history</source>
+ <translation>Shranjeno v zgodovino lokalne denarnice</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="326"/>
+ <source>Send</source>
+ <translation>Pošlji</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="391"/>
+ <source>Show advanced options</source>
+ <translation>Prikaži napredne možnosti</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="454"/>
+ <source>Sweep Unmixable</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="468"/>
+ <source>Create tx file</source>
+ <translation type="unfinished">Ustvari transakcijsko datoteko</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="490"/>
+ <source>Sign tx file</source>
+ <translation type="unfinished">Podpiši transakcijsko datoteko</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="504"/>
+ <source>Submit tx file</source>
+ <translation type="unfinished">Predloži transakcijsko datoteko</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="537"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
+ <source>Error</source>
+ <translation>Napaka</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="599"/>
+ <source>Information</source>
+ <translation>Informacija</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="526"/>
+ <location filename="../pages/Transfer.qml" line="587"/>
+ <source>Please choose a file</source>
+ <translation>Izberi datoteko</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="538"/>
+ <source>Can&apos;t load unsigned transaction: </source>
+ <translation>Ne morem naložiti nepodpisane transakcije: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="545"/>
+ <source>
+Number of transactions: </source>
+ <translation>
+Število transakcij: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="547"/>
+ <source>
+Transaction #%1</source>
+ <translation>
+Transakcija #%1</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="548"/>
+ <source>
+Recipient: </source>
+ <translation>
+Prejemnik: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="549"/>
+ <source>
+payment ID: </source>
+ <translation>
+ID plačila: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="550"/>
+ <source>
+Amount: </source>
+ <translation>
+Znesek: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="551"/>
+ <source>
+Fee: </source>
+ <translation>
+Provizija: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="552"/>
+ <source>
+Ringsize: </source>
+ <translation type="unfinished">
+Velikost obroča:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="566"/>
+ <source>Confirmation</source>
+ <translation>Potrditev</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="594"/>
+ <source>Can&apos;t submit transaction: </source>
+ <translation>Ne morem poslati transakcije: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="600"/>
+ <source>Money sent successfully</source>
+ <translation>Denar uspešno poslan</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="654"/>
+ <location filename="../pages/Transfer.qml" line="666"/>
+ <source>Wallet is not connected to daemon.</source>
+ <translation>Denarnica ni povezana s prikritim procesom</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="669"/>
+ <source>Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon</source>
+ <translation>Povezan prikriti proces ni združljiv z grafičnim vmesnikom.
+Prosim nadgradite vmesnik ali ga povežite z drugim procesom</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="674"/>
+ <source>Waiting on daemon synchronization to finish</source>
+ <translation>Čakam, da prikriti proces zaključi sinhronizacijo</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="91"/>
+ <source></source>
+ <translation></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="419"/>
+ <source>Transaction cost</source>
+ <translation>Strošek transakcije</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="301"/>
+ <source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
+ <translation>ID plačila &lt;font size=&apos;2&apos;&gt;( neobvezno )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="194"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>Počasno (x0.25)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="195"/>
+ <source>Default (x1 fee)</source>
+ <translation>Privzeto (x1 provizija)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="196"/>
+ <source>Fast (x5 fee)</source>
+ <translation>Hitro (x5)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="197"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>Najhitrejše (x41.5)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="307"/>
+ <source>16 or 64 hexadecimal characters</source>
+ <translation>16 ali 64 šestnajstiških znakov</translation>
+ </message>
+</context>
+<context>
+ <name>TxKey</name>
+ <message>
+ <location filename="../pages/TxKey.qml" line="349"/>
+ <source>If a payment had several transactions then each must be checked and the results combined.</source>
+ <translation>Če je plačilo iz večih transakcij, se mora vsaka preveriti in rezultati združiti.</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="133"/>
+ <location filename="../pages/TxKey.qml" line="245"/>
+ <source>Address</source>
+ <translation>Naslov</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="140"/>
+ <location filename="../pages/TxKey.qml" line="252"/>
+ <source>Recipient&apos;s wallet address</source>
+ <translation>Prejemnikov naslov denarnice</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="159"/>
+ <location filename="../pages/TxKey.qml" line="271"/>
+ <source>Message</source>
+ <translation>Sporočilo</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="166"/>
+ <location filename="../pages/TxKey.qml" line="278"/>
+ <source>Optional message against which the signature is signed</source>
+ <translation type="unfinished">Neobvezno sporočilo katerega podpis je podpisan</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="186"/>
+ <source>Generate</source>
+ <translation>Ustvari</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="297"/>
+ <source>Signature</source>
+ <translation>Podpis</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="305"/>
+ <source>Paste tx proof</source>
+ <translation>Prilepi dokaz transakcije</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="106"/>
+ <location filename="../pages/TxKey.qml" line="218"/>
+ <source>Transaction ID</source>
+ <translation>ID transakcije</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="97"/>
+ <source>Generate a proof of your incoming/outgoing payment by supplying the transaction ID, the recipient address and an optional message.
+For the case of outgoing payments, you can get a &apos;Spend Proof&apos; that proves the authorship of a transaction. In this case, you don&apos;t need to specify the recipient address.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="113"/>
+ <location filename="../pages/TxKey.qml" line="225"/>
+ <source>Paste tx ID</source>
+ <translation>Prilepi ID transakcije</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="209"/>
+ <source>Verify that funds were paid to an address by supplying the transaction ID, the recipient address, the message used for signing and the signature.
+For the case with Spend Proof, you don&apos;t need to specify the recipient address.</source>
+ <translation type="unfinished">Preveri prenos sredstev na naslov z ID transakcije, prejemnikovim naslovom, sporočilom uporabljenim za podpisovanje ter samim podpisom.</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="326"/>
+ <source>Check</source>
+ <translation>Preveri</translation>
+ </message>
+</context>
+<context>
+ <name>WizardConfigure</name>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="79"/>
+ <source>We’re almost there - let’s just configure some Monero preferences</source>
+ <translation>Smo skoraj pri koncu. Samo še konfiguriramo Monero nastavitve</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="97"/>
+ <source>Kickstart the Monero blockchain?</source>
+ <translation>Spodbudimo nalaganje Monero blockchaina?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="115"/>
+ <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
+ <translation>Zelo pomembno je, da si to nekam zapišete. Je zagotovilo, in edina potrebna reč, za varno hranjenje vaše denarnice.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="126"/>
+ <source>Enable disk conservation mode?</source>
+ <translation>Omogoči ohranjevalni način za disk?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="144"/>
+ <source>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.</source>
+ <translation>Ohranjevalni način za disk potrebuje bistveno manj prostora, a enako mrežno pasovno širino kot običajen Monero program. A vendarle je hranjenje celotnega blockchaina koristno za varnost omrežja Monero. Če uporabljate napravo z omejenim diskovnim prostorom, je način za vas primeren.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="157"/>
+ <source>Allow background mining?</source>
+ <translation>Dovolim rudarjenje v ozadju?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="175"/>
+ <source>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.</source>
+ <translation>Rudarjenje zagotavlja varnost omrežja Monero, hkrati pa tudi izplača majhno nagrado za opravljeno delo. Ta opcija dovoli aplikaciji Monero rudariti, ko je vaš računalnik na glavnem napajanju ter nedejaven. Preneha rudariti, ko nadaljujete z delom.</translation>
+ </message>
+</context>
+<context>
+ <name>WizardCreateViewOnlyWallet</name>
+ <message>
+ <location filename="../wizard/WizardCreateViewOnlyWallet.qml" line="68"/>
+ <source>Create view only wallet</source>
+ <translation>Ustvari view only denarnico</translation>
+ </message>
+</context>
+<context>
+ <name>WizardCreateWallet</name>
+ <message>
+ <location filename="../wizard/WizardCreateWallet.qml" line="100"/>
+ <source>Create a new wallet</source>
+ <translation>Ustvari novo denarnico</translation>
+ </message>
+</context>
+<context>
+ <name>WizardDaemonSettings</name>
+ <message>
+ <location filename="../wizard/WizardDaemonSettings.qml" line="114"/>
+ <source>To be able to communicate with the Monero network your wallet needs to be connected to a Monero node. For best privacy it&apos;s recommended to run your own node. &lt;br&gt;&lt;br&gt; If you don&apos;t have the option to run an own node there&apos;s an option to connect to a remote node.</source>
+ <translation>Da je mogoče komunicirati z omrežjem Monero, mora vaša denarnica biti povezana z vozliščem Monero. Za najboljšo zasebnost je priporočeno, da poganjate lastno vozlišče. &lt;br&gt;&lt;br&gt; Če nimate možnosti poganjati lastno vozlišče, se je možno povezati na oddaljeno vozlišče.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDaemonSettings.qml" line="126"/>
+ <source>Start a node automatically in background (recommended)</source>
+ <translation>Samodejno zaženi vozlišče v ozadju (priporočeno)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDaemonSettings.qml" line="144"/>
+ <source>Blockchain location</source>
+ <translation>Lokacija blockchaina</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDaemonSettings.qml" line="151"/>
+ <source>(optional)</source>
+ <translation>(neobvezno)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDaemonSettings.qml" line="170"/>
+ <source>Connect to a remote node until my own node has finished syncing</source>
+ <translation>Poveži se z oddaljenim vozliščem dokler lastno vozlišče ne zaključi sinhronizacije</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDaemonSettings.qml" line="171"/>
+ <source>Connect to a remote node</source>
+ <translation>Poveži z oddaljenim vozliščem</translation>
+ </message>
+</context>
+<context>
+ <name>WizardDonation</name>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="93"/>
+ <source>Monero development is solely supported by donations</source>
+ <translation>Razvoj Monera je financiran izključno preko donacij</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="113"/>
+ <source>Enable auto-donations of?</source>
+ <translation>Omogoči samodejne donacije?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="153"/>
+ <source>% of my fee added to each transaction</source>
+ <translation>% moje provizije dodan vsaki transakciji</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="164"/>
+ <source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
+ <translation>Za vsako transakcijo je zaračunana majhna provizija. Ta opcija omogoči dodaten znesek k tej proviziji, kot odstotek te provizije. Na ta način vaše transakcije podpirajo razvoj sistema Monero. Na primer, 50% samodejna donacija bo transakciji s provizijo 0.005 XMR, dodala provizijo 0.0025 XMR, ki bo namenjena razvoju Monera.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="176"/>
+ <source>Allow background mining?</source>
+ <translation>Dovoli rudarjenje v ozadju?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="194"/>
+ <source>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.</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>WizardFinish</name>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="49"/>
+ <location filename="../wizard/WizardFinish.qml" line="52"/>
+ <location filename="../wizard/WizardFinish.qml" line="54"/>
+ <source>Enabled</source>
+ <translation>Omogočeno</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="49"/>
+ <location filename="../wizard/WizardFinish.qml" line="52"/>
+ <location filename="../wizard/WizardFinish.qml" line="54"/>
+ <source>Disabled</source>
+ <translation>Onemogočeno</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="58"/>
+ <source>Language</source>
+ <translation>Jezik</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="59"/>
+ <source>Wallet name</source>
+ <translation>Ime denarnice</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="60"/>
+ <source>Backup seed</source>
+ <translation>Varnostna kopija semena</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="61"/>
+ <source>Wallet path</source>
+ <translation>Pot do denarnice</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="67"/>
+ <source>Daemon address</source>
+ <translation>Naslov prikritega procesa</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="68"/>
+ <source>Testnet</source>
+ <translation>Testno omrežje</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="70"/>
+ <source>Restore height</source>
+ <translation type="unfinished">Višina obnovitve</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="78"/>
+ <source>New wallet details:</source>
+ <translation>Podrobnost nove denarnice:</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="82"/>
+ <source>Don&apos;t forget to write down your seed. You can view your seed and change your settings on settings page.</source>
+ <translation>Ne pozabite shraniti oz. zapisati vašega semena. Vaše seme je vidno v nastavitvah na strani Nastavitve.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="128"/>
+ <source>You’re all set up!</source>
+ <translation>Vse je nared!</translation>
+ </message>
+</context>
+<context>
+ <name>WizardMain</name>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="183"/>
+ <source>A wallet with same name already exists. Please change wallet name</source>
+ <translation>Denarnica s tem imenom že obstaja. Zamenjaj ime denarnice.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="191"/>
+ <source>Non-ASCII characters are not allowed in wallet path or account name</source>
+ <translation>Ne ASCII znaki niso dovoljeni v poti denarnice ali imenu računa</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="375"/>
+ <source>USE MONERO</source>
+ <translation>UPORABI MONERO</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="392"/>
+ <source>Create wallet</source>
+ <translation>Ustvari denarnico</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="402"/>
+ <source>Success</source>
+ <translation>Uspelo</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="403"/>
+ <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
+%1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="411"/>
+ <source>Error</source>
+ <translation>Napaka</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="424"/>
+ <source>Abort</source>
+ <translation>Prekini</translation>
+ </message>
+</context>
+<context>
+ <name>WizardManageWalletUI</name>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="158"/>
+ <source>Wallet name</source>
+ <translation>Ime denarnice</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="178"/>
+ <source>Restore from seed</source>
+ <translation>Obnovi iz semena</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="192"/>
+ <source>Restore from keys</source>
+ <translation>Obnovi iz ključev</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="206"/>
+ <source>From QR Code</source>
+ <translation>Iz QR kode</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="245"/>
+ <source>Account address (public)</source>
+ <translation>Naslov računa (javni)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="253"/>
+ <source>View key (private)</source>
+ <translation type="unfinished">Poglej ključ (privatni)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="262"/>
+ <source>Spend key (private)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="274"/>
+ <source>Restore height (optional)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="287"/>
+ <source>Your wallet is stored in</source>
+ <translation>Vaša denarnica je shranjena v</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="313"/>
+ <source>Please choose a directory</source>
+ <translation>Izberite mapo</translation>
+ </message>
+</context>
+<context>
+ <name>WizardMemoTextInput</name>
+ <message>
+ <location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
+ <source>Enter your 25 word mnemonic seed</source>
+ <translation>Vnesi 25 besed mnemoničnega semena</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMemoTextInput.qml" line="64"/>
+ <source>Seed copied to clipboard</source>
+ <translation>Seme je skopirano v odložišče</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMemoTextInput.qml" line="92"/>
+ <source>This seed is &lt;b&gt;very&lt;/b&gt; important to write down and keep secret. It is all you need to backup and restore your wallet.</source>
+ <translation>Seme je &lt;b&gt;zelo&lt;/b&gt; pomembno zapisati in skrivaj shraniti. Je vse kar potrebujete, da varno shranite in obnovite vašo denarnico.</translation>
+ </message>
+</context>
+<context>
+ <name>WizardOptions</name>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="74"/>
+ <source>Welcome to Monero!</source>
+ <translation>Dobrodošli v Monero!</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="85"/>
+ <source>Please select one of the following options:</source>
+ <translation>Izberite eno od sledečih možnosti:</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="141"/>
+ <source>Create a new wallet</source>
+ <translation>Ustvari novo denarnico</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="182"/>
+ <source>Restore wallet from keys or mnemonic seed</source>
+ <translation>Obnovi denarnico s ključem ali mnemoničnim semenom</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="225"/>
+ <source>Open a wallet from file</source>
+ <translation>Odpri denarnico iz datoteke</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="245"/>
+ <source>Testnet</source>
+ <translation type="unfinished">Testna mreža</translation>
+ </message>
+</context>
+<context>
+ <name>WizardPassword</name>
+ <message>
+ <location filename="../wizard/WizardPassword.qml" line="57"/>
+ <location filename="../wizard/WizardPassword.qml" line="59"/>
+ <source>Give your wallet a password</source>
+ <translation>Ustvarite geslo za denarnico</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardPassword.qml" line="126"/>
+ <source> &lt;br&gt;Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
+ &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
+ <translation> &lt;br&gt;Opomba: gesla se ne da obnoviti. Ce ga pozabite, se denarnica obnovi iz 25 besed dolgega mnemonicnega semena.&lt;br/&gt;&lt;br/&gt;
+ &lt;b&gt;Vnesite mocno geslo&lt;/b&gt; (uporabite crke, štefilke in/ali simbole):</translation>
+ </message>
+</context>
+<context>
+ <name>WizardPasswordUI</name>
+ <message>
+ <location filename="../wizard/WizardPasswordUI.qml" line="73"/>
+ <source>Password</source>
+ <translation>Geslo</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardPasswordUI.qml" line="85"/>
+ <source>Confirm password</source>
+ <translation>Potrdi geslo</translation>
+ </message>
+</context>
+<context>
+ <name>WizardRecoveryWallet</name>
+ <message>
+ <location filename="../wizard/WizardRecoveryWallet.qml" line="118"/>
+ <source>Restore wallet</source>
+ <translation>Obnovi denarnico</translation>
+ </message>
+</context>
+<context>
+ <name>WizardWelcome</name>
+ <message>
+ <location filename="../wizard/WizardWelcome.qml" line="73"/>
+ <source>Welcome to Monero!</source>
+ <translation>Dobrodošli v Monero!</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardWelcome.qml" line="83"/>
+ <source>Please choose a language and regional format.</source>
+ <translation>Izberite jezik in krajevne nastavitve.</translation>
+ </message>
+</context>
+<context>
+ <name>main</name>
+ <message>
+ <location filename="../main.qml" line="352"/>
+ <location filename="../main.qml" line="561"/>
+ <location filename="../main.qml" line="573"/>
+ <location filename="../main.qml" line="623"/>
+ <location filename="../main.qml" line="635"/>
+ <location filename="../main.qml" line="677"/>
+ <location filename="../main.qml" line="686"/>
+ <location filename="../main.qml" line="738"/>
+ <location filename="../main.qml" line="836"/>
+ <location filename="../main.qml" line="1032"/>
+ <location filename="../main.qml" line="1177"/>
+ <location filename="../main.qml" line="1280"/>
+ <source>Error</source>
+ <translation>Napaka</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="353"/>
+ <source>Couldn&apos;t open wallet: </source>
+ <translation>Ne morem odpreti denarnice: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="382"/>
+ <source>Unlocked balance (waiting for block)</source>
+ <translation>Odklenjeno stanje (čakam na blok)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="382"/>
+ <source>Unlocked balance (~%1 min)</source>
+ <translation>Odklenjeno stanje (~%1 min)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="382"/>
+ <source>Unlocked balance</source>
+ <translation>Odklenjeno stanje</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="435"/>
+ <source>Remaining blocks (local node):</source>
+ <translation>Preostali blocki (lokalno vozlišče):</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="475"/>
+ <source>Waiting for daemon to start...</source>
+ <translation>Čakam na zagon prikritega procesa...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="481"/>
+ <source>Waiting for daemon to stop...</source>
+ <translation>Čakam, da se prikriti proces zaustavi...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="506"/>
+ <source>Daemon failed to start</source>
+ <translation>Prikriti proces neuspešno zagnan</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="507"/>
+ <source>Please check your wallet and daemon log for errors. You can also try to start %1 manually.</source>
+ <translation>Preverite vašo denarnico in dnevnik prikritega procesa za morebitne napake. Lahko tudi poskusite zagnati %1 ročno.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="563"/>
+ <source>Can&apos;t create transaction: Wrong daemon version: </source>
+ <translation>Ne uspem ustvariti transakcije: napačna verzija prikritega procesa: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="565"/>
+ <location filename="../main.qml" line="678"/>
+ <source>Can&apos;t create transaction: </source>
+ <translation>Ne uspem ustvariti transakcije: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="574"/>
+ <location filename="../main.qml" line="687"/>
+ <source>No unmixable outputs to sweep</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="586"/>
+ <location filename="../main.qml" line="699"/>
+ <source>Confirmation</source>
+ <translation>Potrditev</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="587"/>
+ <location filename="../main.qml" line="700"/>
+ <source>Please confirm transaction:
+</source>
+ <translation>Prosim potrdite transakcijo:
+</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="588"/>
+ <source>
+Address: </source>
+ <translation>
+Naslov: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="589"/>
+ <source>
+Payment ID: </source>
+ <translation>
+ID plačila: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="590"/>
+ <location filename="../main.qml" line="701"/>
+ <source>
+
+Amount: </source>
+ <translation>
+Znesek: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="591"/>
+ <location filename="../main.qml" line="702"/>
+ <source>
+Fee: </source>
+ <translation>
+Provizija: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="592"/>
+ <source>
+
+Ringsize: </source>
+ <translation type="unfinished">
+Velikost obroča: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="778"/>
+ <source>Payment proof</source>
+ <translation>Dokaz plačila</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="781"/>
+ <source>Couldn&apos;t generate a proof because of the following reason:
+</source>
+ <translation>Ne uspem ustvariti dokaza zaradi sledečih razlogov:
+</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="811"/>
+ <location filename="../main.qml" line="831"/>
+ <source>Payment proof check</source>
+ <translation>Preverjanje dokaza plačila</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="814"/>
+ <location filename="../main.qml" line="833"/>
+ <source>Bad signature</source>
+ <translation type="unfinished">Slab podpis</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="822"/>
+ <source>This address received %1 monero, with %2 confirmation(s).</source>
+ <translation>Ta naslov je prejel %1 monerov, s %2 potrditev.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="833"/>
+ <source>Good signature</source>
+ <translation>Dober podpis</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1033"/>
+ <location filename="../main.qml" line="1281"/>
+ <source>Wrong password</source>
+ <translation>Napačno geslo</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1108"/>
+ <source>Warning</source>
+ <translation>Opozorilo</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1111"/>
+ <source>Error: Filesystem is read only</source>
+ <translation>Napaka: datotečni sistem je samo za branje</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1113"/>
+ <source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation>Opozorilo: Na napravi je na voljo samo %1 GB prostora. Blockchain zahteva ~%2 GB podatkov.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1115"/>
+ <source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation>Opomba: Na napravi je na voljo samo %1 GB prostora. Blockchain zahteva ~%2 GB podatkov.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1117"/>
+ <source>Note: lmdb folder not found. A new folder will be created.</source>
+ <translation>Opomba: ne najdem mape lmdb. Ustvarjena bo nova mapa.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1121"/>
+ <source>Cancel</source>
+ <translation>Prekliči</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1174"/>
+ <source>Password changed successfully</source>
+ <translation>Geslo uspešno spremenjeno</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1178"/>
+ <source>Error: </source>
+ <translation>Napaka: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1599"/>
+ <source>Tap again to close...</source>
+ <translation>Ponovno se dotakni, da zapreš...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1612"/>
+ <source>Daemon is running</source>
+ <translation>Prikriti proces teče</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1613"/>
+ <source>Daemon will still be running in background when GUI is closed.</source>
+ <translation>Ko zaprete grafični vmesnik, bo prikriti proces nadaljeval v ozadju.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1615"/>
+ <source>Stop daemon</source>
+ <translation>Ustavi prikriti proces</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1650"/>
+ <source>New version of monero-wallet-gui is available: %1&lt;br&gt;%2</source>
+ <translation>Na voljo je nova različica grafičnega vmesnika (monero-wallet-gui): %1&lt;br&gt;%2</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="593"/>
+ <source>
+Number of transactions: </source>
+ <translation>Število transakcij: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="313"/>
+ <location filename="../main.qml" line="314"/>
+ <source>HIDDEN</source>
+ <translation>SKRIT</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="594"/>
+ <source>
+
+Description: </source>
+ <translation>
+
+Opis: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="624"/>
+ <source>Amount is wrong: expected number from %1 to %2</source>
+ <translation>Napačen znesek: pričakovano število je od %1 do %2</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="636"/>
+ <source>Insufficient funds. Unlocked balance: %1</source>
+ <translation>Ni dovolj sredstev. Odklenjeno stanje: %1</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="739"/>
+ <source>Couldn&apos;t send the money: </source>
+ <translation>Ne morem poslati denarja: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="742"/>
+ <location filename="../main.qml" line="1173"/>
+ <source>Information</source>
+ <translation>Informacija</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="748"/>
+ <source>Money sent successfully: %1 transaction(s) </source>
+ <translation>Denar uspešno poslan: %1 transakcij(a) </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="748"/>
+ <source>Transaction saved to file: %1</source>
+ <translation>Transakcija shranjena v datoteko: %1</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="819"/>
+ <source>This address received %1 monero, but the transaction is not yet mined</source>
+ <translation>Ta naslov je prejel %1 monera(ov), ampak transakcija še ni v bloku</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="826"/>
+ <source>This address received nothing</source>
+ <translation>Ta naslov ni prejel ničesar</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="845"/>
+ <source>Balance (syncing)</source>
+ <translation>Stanje (sinhroniziram)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="845"/>
+ <source>Balance</source>
+ <translation>Stanje</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1203"/>
+ <source>Please wait...</source>
+ <translation>Počakajte...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1227"/>
+ <source>Program setup wizard</source>
+ <translation>Čarovnik nastavitve</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1243"/>
+ <source>Monero</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1317"/>
+ <source>send to the same destination</source>
+ <translation>Pošlji na isti naslov</translation>
+ </message>
+</context>
+</TS>