Merge pull request #1681

9a09e61 Rename 'blackball' for clarity (moneromooo-monero)
This commit is contained in:
luigi1111 2018-10-19 00:04:30 -05:00
commit 3aa6da058a
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
37 changed files with 280 additions and 280 deletions

View File

@ -76,7 +76,7 @@ Source: "monero-daemon.bat"; DestDir: "{app}"; Flags: ignoreversion;
; Monero blockchain utilities
Source: "bin\monero-blockchain-export.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\monero-blockchain-import.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\monero-blockchain-blackball.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\monero-blockchain-mark-spent-outputs.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\monero-blockchain-usage.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\monero-blockchain-import.exe"; DestDir: "{app}"; Flags: ignoreversion

View File

@ -116,9 +116,9 @@ Rectangle {
Layout.fillWidth: true
textFormat: Text.RichText
text: "<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style>" +
qsTr("Blackballed outputs") + " <a href='#'>" + qsTr("Help") + "</a>" + translationManager.emptyString
qsTr("Outputs marked as spent") + " <a href='#'>" + qsTr("Help") + "</a>" + translationManager.emptyString
onLinkActivated: {
sharedRingDBDialog.title = qsTr("Blackballed outputs") + translationManager.emptyString;
sharedRingDBDialog.title = qsTr("Outputs marked as spent") + translationManager.emptyString;
sharedRingDBDialog.text = qsTr(
"In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able " +
"to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection " +
@ -129,7 +129,7 @@ Rectangle {
"transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, " +
"and you can import this list here.<br>" +
"Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself " +
"using the monero-blockchain-blackball tool to create a list of known spent outputs.<br>"
"using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.<br>"
)
sharedRingDBDialog.icon = StandardIcon.Information
sharedRingDBDialog.open()
@ -153,7 +153,7 @@ Rectangle {
FileDialog {
id: loadBlackballFileDialog
title: qsTr("Please choose a file to load blackballed outputs from") + translationManager.emptyString;
title: qsTr("Please choose a file from which to load outputs to mark as spent") + translationManager.emptyString;
folder: "file://"
nameFilters: [ "*"]
@ -171,7 +171,7 @@ Rectangle {
fontSize: mainLayout.lineEditFontSize
placeholderText: qsTr("Path to file") + "..." + translationManager.emptyString
labelFontSize: 14 * scaleRatio
labelText: qsTr("Filename with outputs to blackball") + ":" + translationManager.emptyString
labelText: qsTr("Filename with outputs to mark as spent") + ":" + translationManager.emptyString
copyButton: true
readOnly: false
}
@ -211,7 +211,7 @@ Rectangle {
id: blackballOutputAmountLine
fontSize: mainLayout.lineEditFontSize
labelFontSize: 14 * scaleRatio
labelText: qsTr("Or manually blackball/unblackball a single output:") + translationManager.emptyString
labelText: qsTr("Or manually mark a single output as spent/unspent:") + translationManager.emptyString
placeholderText: qsTr("Paste output amount") + "..." + translationManager.emptyString
readOnly: false
width: mainLayout.editWidth / 2
@ -235,7 +235,7 @@ Rectangle {
StandardButton {
id: blackballButton
text: qsTr("Blackball") + translationManager.emptyString
text: qsTr("Mark as spent") + translationManager.emptyString
small: true
enabled: !!appWindow.currentWallet && validUnsigned(blackballOutputAmountLine.text) && validUnsigned(blackballOutputOffsetLine.text)
onClicked: appWindow.currentWallet.blackballOutput(blackballOutputAmountLine.text, blackballOutputOffsetLine.text)
@ -244,7 +244,7 @@ Rectangle {
StandardButton {
id: unblackballButton
anchors.right: parent.right
text: qsTr("Unblackball") + translationManager.emptyString
text: qsTr("Mark as unspent") + translationManager.emptyString
small: true
enabled: !!appWindow.currentWallet && validUnsigned(blackballOutputAmountLine.text) && validUnsigned(blackballOutputOffsetLine.text)
onClicked: appWindow.currentWallet.unblackballOutput(blackballOutputAmountLine.text, blackballOutputOffsetLine.text)

View File

@ -1325,7 +1325,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1336,7 +1336,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1351,7 +1351,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1361,7 +1361,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1376,7 +1376,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent:</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1391,12 +1391,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1333,7 +1333,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>المخرجات المرفوضه</translation>
</message>
<message>
@ -1344,10 +1344,10 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>لحجب اي المدخلات يتم انفاقها في معامله مونيرو يجب الا يتمكن طرف تالت من معرفه اي من المدخلات في المعامله تم انفاقها. القدره علي فعل ذلك تضعف الحمايه التي توفرها توقيعات الطوق.اذا إذا كانت جميع المدخلات ماعدا واحدة قد تم إنفاقها بالفعل ، فإن المدخلات التي يتم إنفاقها بالفعل تصبح ظاهرة ، وبالتالي تبطل أثر توقيعات الطوق وهي واحده من التلات طبقات الرئيسيه لحمايه الخصوصيه التي يوفرها مونيرو.
لمساعده المعاملات علي تجنب تلك المدخلات يمكن استخدام قائمة بالأشكال المستنفذة المعروفة لتجنب استخدامها في معاملات جديدة. يتم الاحتفاظ بمثل هذه القائمة من خلال مشروع مونيرو وهو متاح على موقع getmonero.org ويمكنك استيراد هذه القائمه هنا.
أيضاً يمكنك فحص سلسله الكتل بنفسك ( وسلسله الكتل التي تعيد استخدام مفاتيح مونيرو) بنفسك بإستخدام أداه monero-blockchain-blackball لإنشاء قائمة بالمخرجات المستنفذة المعروفة.</translation>
أيضاً يمكنك فحص سلسله الكتل بنفسك ( وسلسله الكتل التي تعيد استخدام مفاتيح مونيرو) بنفسك بإستخدام أداه monero-blockchain-mark-spent-outputs لإنشاء قائمة بالمخرجات المستنفذة المعروفة.</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1361,7 +1361,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>من فضلك اختر ملف لتحميل المخرجات المرفوضه منه</translation>
</message>
<message>
@ -1371,7 +1371,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>اسم الملف الذي يحتوي علي المخرجات المرفوضه</translation>
</message>
<message>
@ -1386,7 +1386,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>او اضافه مخرج مرفوض يدويا:</translation>
</message>
<message>
@ -1401,12 +1401,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>رفض</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>الغاء الرفض</translation>
</message>
<message>

View File

@ -1331,7 +1331,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1342,8 +1342,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>За да може да скрие кои входящи заявки в една транзакция на Монеро са похарчени, трети лица не бива да могат да разберат кои входящи заявки са вече похарчени. Ако могат, това би отслабило защитата на пръстеновите подписи. Ако се знае че са похарчени за всички освен една от входящите заявки, тогава реалната заявка става видима. По този начин се премахва ефекта от пръстеновите подписи - една от трите основни степени на защита на сигурността личните данни на Монеро. .&lt;br&gt;За да спомогнат на транзакциите да избягват такива входящи заявки, може да се ползва списък с известни заявки за да се избегне използването им в нови заявки. Такъв списък се поддържа от проектът Монеро и е достъпен на сайтът getmonero.org и можете да го внесете от тук. .&lt;br&gt;А можете и да сканирате блокчейна (и блокчейна на използващите повторно ключове на клонинги на Монеро) лично, използвайки инструментът монеро-блокчейн-blackball за да създадете списък със известни похарчени заявки.&lt;br&gt; </translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>За да може да скрие кои входящи заявки в една транзакция на Монеро са похарчени, трети лица не бива да могат да разберат кои входящи заявки са вече похарчени. Ако могат, това би отслабило защитата на пръстеновите подписи. Ако се знае че са похарчени за всички освен една от входящите заявки, тогава реалната заявка става видима. По този начин се премахва ефекта от пръстеновите подписи - една от трите основни степени на защита на сигурността личните данни на Монеро. .&lt;br&gt;За да спомогнат на транзакциите да избягват такива входящи заявки, може да се ползва списък с известни заявки за да се избегне използването им в нови заявки. Такъв списък се поддържа от проектът Монеро и е достъпен на сайтът getmonero.org и можете да го внесете от тук. .&lt;br&gt;А можете и да сканирате блокчейна (и блокчейна на използващите повторно ключове на клонинги на Монеро) лично, използвайки инструментът монеро-блокчейн-mark-spent-outputs за да създадете списък със известни похарчени заявки.&lt;br&gt; </translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1357,7 +1357,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark spent</source>
<translation>Моля изберете файл, от който да заредите blackball заявките</translation>
</message>
<message>
@ -1367,7 +1367,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Име на файла с изходящи заявки към blackball</translation>
</message>
<message>
@ -1382,7 +1382,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Или ръчно blackball/unblackball единична заявка:</translation>
</message>
<message>
@ -1402,12 +1402,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1325,7 +1325,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1336,7 +1336,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1351,7 +1351,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1361,7 +1361,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1376,7 +1376,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1391,12 +1391,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1322,7 +1322,7 @@ Starý soubor s cache pamětí bude přejmenován a může být následně obnov
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Blackball výstupy</translation>
</message>
<message>
@ -1332,17 +1332,17 @@ Starý soubor s cache pamětí bude přejmenován a může být následně obnov
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Abychom skryli, který konkrétní vstup bude v Monero transakci utracen, neměla by třetí strana být schopna říci, které z vstupů do kruhového podpisu jsou již známy jako utracené. Pokud by toto možné bylo, oslabilo by to ochranu poskytovanou tzv. kruhovým podpisem. Je-li známo, že všechny vstupy kromě jednoho jsou již utracené, pak pozbývá smyslu s takovými vstupy vytvářet kruhový podpis, což je jedna z tří hlavních vrstev ochrany soukromí, které Monero používá.&lt;br&gt;Vyhnout se použití těchto soukromí oslabujících vstupů při vytváření transakce lze poskytnutím seznamu vstupů jejichž plná privátnost není zaručena. Tento seznam udržuje projekt Monero a je dostupný na webových stránkách getmonero.org a můžete jej importovat zde. &lt;br&gt; Alternativně můžete sami skenovat blockchain pomocí nástroje monero-blockchain-blackball pro vytvoření seznamu známých vyčerpaných výstupů.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Abychom skryli, který konkrétní vstup bude v Monero transakci utracen, neměla by třetí strana být schopna říci, které z vstupů do kruhového podpisu jsou již známy jako utracené. Pokud by toto možné bylo, oslabilo by to ochranu poskytovanou tzv. kruhovým podpisem. Je-li známo, že všechny vstupy kromě jednoho jsou již utracené, pak pozbývá smyslu s takovými vstupy vytvářet kruhový podpis, což je jedna z tří hlavních vrstev ochrany soukromí, které Monero používá.&lt;br&gt;Vyhnout se použití těchto soukromí oslabujících vstupů při vytváření transakce lze poskytnutím seznamu vstupů jejichž plná privátnost není zaručena. Tento seznam udržuje projekt Monero a je dostupný na webových stránkách getmonero.org a můžete jej importovat zde. &lt;br&gt; Alternativně můžete sami skenovat blockchain pomocí nástroje monero-blockchain-mark-spent-outputs pro vytvoření seznamu známých vyčerpaných výstupů.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Prosím, vyberte soubor se seznamem tzv. &quot;blackball&quot; výstupů</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Název souboru s blackball výstupy</translation>
</message>
<message>
@ -1352,12 +1352,12 @@ Starý soubor s cache pamětí bude přejmenován a může být následně obnov
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Přidat do blackball</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Odebrat z blackball</translation>
</message>
<message>
@ -1405,7 +1405,7 @@ Starý soubor s cache pamětí bude přejmenován a může být následně obnov
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Nebo manuálně zařaďte nebo odeberte konkrétní vstup, či výstup z blackball seznamu:</translation>
</message>
<message>

View File

@ -1331,7 +1331,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Blacklistet outputs</translation>
</message>
<message>
@ -1342,8 +1342,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>For at skjule hvilke inputs i en Monero transaktion bliver brugt, skal en tredje part ikke kunne sige hvilke inputs i en ring allerede er kendt for at blive brugt. Hvis en kan det ville det svække beskyttelsen der er fra ring signature. Hvis alle undtagen en af inputne er kendt for alle at være brugt, bliver den ene input der faktisk bliver brugt synlig, og derved fjerner alt beskyttelse fra ring signature, som er et af de tre beskyttende lag Monero bruger.&lt;br&gt;For at hjælpe transaktioner med at undgå disse inputs, kan en liste af kendte brugte inputs blive brugt for at undgå at bruge dem i nye transaktioner. Sådan en liste bliver vedligeholdt af Monero projektet og er tilgængelig getmonero.org hjemmesiden, og du kan importere denne liste her.&lt;br&gt;Alternativt kan du scanne blockchainen (og blockchainen fra de Monero kloner der genbruger nøglerne) selv ved brug af monero-blockchain-blackball værktøjet for at oprette en liste over kendte brugte outputs.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-as-spent tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>For at skjule hvilke inputs i en Monero transaktion bliver brugt, skal en tredje part ikke kunne sige hvilke inputs i en ring allerede er kendt for at blive brugt. Hvis en kan det ville det svække beskyttelsen der er fra ring signature. Hvis alle undtagen en af inputne er kendt for alle at være brugt, bliver den ene input der faktisk bliver brugt synlig, og derved fjerner alt beskyttelse fra ring signature, som er et af de tre beskyttende lag Monero bruger.&lt;br&gt;For at hjælpe transaktioner med at undgå disse inputs, kan en liste af kendte brugte inputs blive brugt for at undgå at bruge dem i nye transaktioner. Sådan en liste bliver vedligeholdt af Monero projektet og er tilgængelig getmonero.org hjemmesiden, og du kan importere denne liste her.&lt;br&gt;Alternativt kan du scanne blockchainen (og blockchainen fra de Monero kloner der genbruger nøglerne) selv ved brug af monero-blockchain-mark-as-spent værktøjet for at oprette en liste over kendte brugte outputs.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1357,7 +1357,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Vælg venligst en fil til at loade blacklistede outputs fra</translation>
</message>
<message>
@ -1367,7 +1367,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Filnavn med outputs der skal blacklistes</translation>
</message>
<message>
@ -1382,17 +1382,17 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Eller manuelt fjern/tilføj et blacklistet enkelt output:</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Blacklist</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Whitelist</translation>
</message>
<message>

View File

@ -1331,7 +1331,7 @@ Die alte Wallet-Cache-Datei wird umbenannt und kann später wiederhergestellt we
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Unzulässige Verschleierungspartner</translation>
</message>
<message>
@ -1342,8 +1342,8 @@ Die alte Wallet-Cache-Datei wird umbenannt und kann später wiederhergestellt we
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Um zu verschleiern, welche Inputs in einer Monero-Transaktion ausgegeben werden, sollte ein Dritter nicht erkennen können, welche Inputs in einem Ring bereits bekannt sind. Dies würde den Schutz durch Ringsignaturen schwächen. Wenn alle bis auf einen der Inputs bereits ausgegeben sind, wird der tatsächlich ausgegebene Input sichtbar, wodurch die Wirkung von Ringsignaturen - eine der drei Hauptebenen der Privatsphäre, die Monero verwendet - zunichte gemacht wird. Um diese Inputs zu vermeiden, kann eine Liste bekannter Ausgaben verwendet werden, um die Verwendung in neuen Transaktionen zu vermeiden. Eine solche Liste wird vom Monero-Projekt verwaltet und ist auf der Website getmonero.org verfügbar, und Sie können diese Liste hier importieren.&lt;br&gt;Alternativ kannst du die Blockchain (und die Blockchain der Monero-Klone) selbst mit dem Monero-Blockchain-Blackball-Tool scannen, um eine Liste der bekannten Outputs zu erstellen.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Um zu verschleiern, welche Inputs in einer Monero-Transaktion ausgegeben werden, sollte ein Dritter nicht erkennen können, welche Inputs in einem Ring bereits bekannt sind. Dies würde den Schutz durch Ringsignaturen schwächen. Wenn alle bis auf einen der Inputs bereits ausgegeben sind, wird der tatsächlich ausgegebene Input sichtbar, wodurch die Wirkung von Ringsignaturen - eine der drei Hauptebenen der Privatsphäre, die Monero verwendet - zunichte gemacht wird. Um diese Inputs zu vermeiden, kann eine Liste bekannter Ausgaben verwendet werden, um die Verwendung in neuen Transaktionen zu vermeiden. Eine solche Liste wird vom Monero-Projekt verwaltet und ist auf der Website getmonero.org verfügbar, und Sie können diese Liste hier importieren.&lt;br&gt;Alternativ kannst du die Blockchain (und die Blockchain der Monero-Klone) selbst mit dem Monero-Blockchain-mark-spent-outputs-Tool scannen, um eine Liste der bekannten Outputs zu erstellen.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1357,7 +1357,7 @@ Die alte Wallet-Cache-Datei wird umbenannt und kann später wiederhergestellt we
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Bitte wähle eine Datei um unzulässige Verschleierungspartner zu laden</translation>
</message>
<message>
@ -1367,7 +1367,7 @@ Die alte Wallet-Cache-Datei wird umbenannt und kann später wiederhergestellt we
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent/unspent</source>
<translation>Datei mit Verschleierungspartnern, die nicht zugelassen werden sollen</translation>
</message>
<message>
@ -1382,7 +1382,7 @@ Die alte Wallet-Cache-Datei wird umbenannt und kann später wiederhergestellt we
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Oder manuell einen einzelnen Verschleierungspartner zulassen/ausschließen (Blackballen):</translation>
</message>
<message>
@ -1397,12 +1397,12 @@ Die alte Wallet-Cache-Datei wird umbenannt und kann später wiederhergestellt we
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Blackballen</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Blackball aufheben</translation>
</message>
<message>

View File

@ -1325,7 +1325,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Malakceptitaj eligoj</translation>
</message>
<message>
@ -1341,7 +1341,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Bonvolu elekti dosieron el kie ŝargiĝos la malakceptitaj eligoj</translation>
</message>
<message>
@ -1351,7 +1351,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Dosiernomo kun malakceptendaj eligoj</translation>
</message>
<message>
@ -1366,17 +1366,17 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation> mane rifuzi/akcepti eligon:</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Malakcepti</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Reakcepti</translation>
</message>
<message>
@ -1387,7 +1387,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1339,7 +1339,7 @@ El archivo de caché anterior del monedero será renombrado y puede ser posterio
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translatorcomment>Found another translation. I leave it in the comments for others to take a look, &quot;blackballed=vetado&quot;.</translatorcomment>
<translation>Salidas excluidas</translation>
</message>
@ -1351,7 +1351,7 @@ El archivo de caché anterior del monedero será renombrado y puede ser posterio
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Para poder ofuscar qué entradas han sido gastadas en las transacciones de Monero, un tercero no debería poder determinar de las firmas circulares cuales han sido gastadas en esas entradas. Hacerlo debilitaría la protección que proporcionan las firmas. Si solo una de las entradas pudiera ser determinada en el gasto, entonces esa entrada se vuelve evidente, anulando el efecto de las firmas. Las firmas circulares son una de las capas principales que usa Monero para proteger la privacidad.&lt;br&gt;Para evitar que las transacciones usen estas entradas, puede ser usada una lista de entradas gastadas para evitar usarlas en nuevas transacciones. Esa lista es mantenida por el proyecto Monero y está disponible en la página web getmonero.org y la puedes importar desde aquí.&lt;br&gt;De lo contrario, puede escanear la cadena de bloques (y las cadenas de bloques de los clones de Monero que reusan las claves) usted mismo usando la herramienta de Monero de salidas excluidas para crear una lista conocida de las salidas gastadas.&lt;br&gt;</translation>
</message>
<message>
@ -1366,7 +1366,7 @@ El archivo de caché anterior del monedero será renombrado y puede ser posterio
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Seleccionar un archivo desde donde cargar las salidas excluidas</translation>
</message>
<message>
@ -1377,7 +1377,7 @@ El archivo de caché anterior del monedero será renombrado y puede ser posterio
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Archivo con las salidas a excluir</translation>
</message>
<message>
@ -1392,7 +1392,7 @@ El archivo de caché anterior del monedero será renombrado y puede ser posterio
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>O excluir/descartar manualmente una salida individual:</translation>
</message>
<message>
@ -1407,12 +1407,12 @@ El archivo de caché anterior del monedero será renombrado y puede ser posterio
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Excluir</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Descartar</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ Vanha lompakkovälimuistitiedosto nimetään uudelleen ja voidaan palauttaa myö
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Blackballed-lähdöt</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ Vanha lompakkovälimuistitiedosto nimetään uudelleen ja voidaan palauttaa myö
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Lähtöjen peittämiseksi Monero-siirroissa kolmannen osapuolen ei tulisi pystyä määrittämään mitkä tulot renkaassa ovat tiedetysti kulutetut. Mikäli määritys onnistuu, heikentäisi se rengasallekirjoitusten tarjoaman suojan. Jos kaikki paitsi yksi tulo tiedetään kulutetun, tosiasiassa kulutettu tulo paljastuu, jonka seurauksena renkaalla ei ole enää merkitystä, koska rengas on yksi kolmesta yksityisyydensuojan tasosta jota Monero käyttää.&lt;br&gt;Siirtoja voi helpottaa välttämään näitä tuloja, listaa tiedetyistä kulutetuista voidaan käyttää jotta vältetään niiden käyttö uusissa siirroissa. Tälläistä listaa ylläpitää Monero-projekti ja se on saatavilla getmonero.org -sivulla, josta sen voi hakea.&lt;br&gt;Vaihtoehtoisesti voit skannata lohkoketjun (ja avaimia uudelleenkäyttäviä Monero-klooneja) itse käyttäen monero-blockchain-blackball työkalua luodaksesi listan tiedetyistä kulutetuista lähdöistä.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Lähtöjen peittämiseksi Monero-siirroissa kolmannen osapuolen ei tulisi pystyä määrittämään mitkä tulot renkaassa ovat tiedetysti kulutetut. Mikäli määritys onnistuu, heikentäisi se rengasallekirjoitusten tarjoaman suojan. Jos kaikki paitsi yksi tulo tiedetään kulutetun, tosiasiassa kulutettu tulo paljastuu, jonka seurauksena renkaalla ei ole enää merkitystä, koska rengas on yksi kolmesta yksityisyydensuojan tasosta jota Monero käyttää.&lt;br&gt;Siirtoja voi helpottaa välttämään näitä tuloja, listaa tiedetyistä kulutetuista voidaan käyttää jotta vältetään niiden käyttö uusissa siirroissa. Tälläistä listaa ylläpitää Monero-projekti ja se on saatavilla getmonero.org -sivulla, josta sen voi hakea.&lt;br&gt;Vaihtoehtoisesti voit skannata lohkoketjun (ja avaimia uudelleenkäyttäviä Monero-klooneja) itse käyttäen monero-blockchain-mark-spent-outputs työkalua luodaksesi listan tiedetyistä kulutetuista lähdöistä.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ Vanha lompakkovälimuistitiedosto nimetään uudelleen ja voidaan palauttaa myö
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Valitse tiedosto josta blackballed-lähdöt ladataan</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ Vanha lompakkovälimuistitiedosto nimetään uudelleen ja voidaan palauttaa myö
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Tiedoston nimi jossa lähdöt</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ Vanha lompakkovälimuistitiedosto nimetään uudelleen ja voidaan palauttaa myö
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Tai manuaalisesti blackball/unblackball yhdessä lähdössä:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ Vanha lompakkovälimuistitiedosto nimetään uudelleen ja voidaan palauttaa myö
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Blackball</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Unblackball</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ L&apos;ancien fichier du cache du portefeuille sera renommé et pourra être res
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Sorties Blackboulées</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ L&apos;ancien fichier du cache du portefeuille sera renommé et pourra être res
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Afin de masquer quelles entrées d&apos;une transaction monero sont dépensées, un tiers ne doit pas pouvoir dire quelles entrées d&apos;un cercle ont déjà é dépensées. En être capable affaiblirait la protection apportée par les signatures de cercle. Si toutes les entrées sauf une sont des dépenses connues, alors l&apos;entrée en cours de dépense devient visible, annulant ainsi les effets des signatures de cercle, l&apos;un des trois piliers de la protection de la confidentialité utilisés pas Monero.&lt;br&gt;Pour permettre aux transactions d&apos;éviter ces entrées, une liste de celles qui sont connues peut être utilisée afin d&apos;éviter de les employer dans de nouvelles transactions. Une telle liste est maintenue par le projet Monero et est disponible sur le site getmonero.org. Vous pouvez importer cette liste ici.&lt;br&gt;Sinon, vous pouvez scanner la chaîne de blocs (et la chaîne de blocs des clones de Monero réutilisant les clefs) vous même en utilisant l&apos;outil monero-blockchain-blackball pour créer une liste de sorties dépensées connue.</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Afin de masquer quelles entrées d&apos;une transaction monero sont dépensées, un tiers ne doit pas pouvoir dire quelles entrées d&apos;un cercle ont déjà é dépensées. En être capable affaiblirait la protection apportée par les signatures de cercle. Si toutes les entrées sauf une sont des dépenses connues, alors l&apos;entrée en cours de dépense devient visible, annulant ainsi les effets des signatures de cercle, l&apos;un des trois piliers de la protection de la confidentialité utilisés pas Monero.&lt;br&gt;Pour permettre aux transactions d&apos;éviter ces entrées, une liste de celles qui sont connues peut être utilisée afin d&apos;éviter de les employer dans de nouvelles transactions. Une telle liste est maintenue par le projet Monero et est disponible sur le site getmonero.org. Vous pouvez importer cette liste ici.&lt;br&gt;Sinon, vous pouvez scanner la chaîne de blocs (et la chaîne de blocs des clones de Monero réutilisant les clefs) vous même en utilisant l&apos;outil monero-blockchain-mark-spent-outputs pour créer une liste de sorties dépensées connue.</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1359,7 +1359,7 @@ L&apos;ancien fichier du cache du portefeuille sera renommé et pourra être res
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Choissisez un fichier pour charger les sorties blackboulées</translation>
</message>
<message>
@ -1369,7 +1369,7 @@ L&apos;ancien fichier du cache du portefeuille sera renommé et pourra être res
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Nom du fichier avec les sorties à blackbouler</translation>
</message>
<message>
@ -1384,7 +1384,7 @@ L&apos;ancien fichier du cache du portefeuille sera renommé et pourra être res
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Ou blackbouler/déblackbouler une seule sortie manuellement: </translation>
</message>
<message>
@ -1399,12 +1399,12 @@ L&apos;ancien fichier du cache du portefeuille sera renommé et pourra être res
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Blackbouler</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>déblackbouler</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1343,7 +1343,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1358,7 +1358,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1368,7 +1368,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1383,7 +1383,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1398,12 +1398,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1325,7 +1325,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1336,7 +1336,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1351,7 +1351,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1361,7 +1361,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1376,7 +1376,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1391,12 +1391,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1325,7 +1325,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Blackball izlazi</translation>
</message>
<message>
@ -1336,8 +1336,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Kako bi se zamaskirali ulazi koji se koriste u Monero transakciji, vanjski promatrač nebi smio odgonetnuti koji ulazi su iskorišteni u prstenu. U protivnom bi zaštita, koju nude potpisi prstenja, bila ugrožena. Ako su svi osim jednog ulaza vec bili iskorišteni otprije moguće je doznati koji je ulaz pravi, a to poništava zaštitu potpisa prstenja, odnosno jednu od tri glavne razine Monero zaštite privatnosti.&lt;br&gt;Kako bi pomogli transakcijama zaobići takve ulaze, može se korisiti popis poznatih potrošenih ulaza. Takav popis vodi Monero projekt i može se nabaviti na getmonero.org web stranici, te ga onda uvesti ovdje.&lt;br&gt;U protivnom, može se očitati lanac blokova (te lanac blokova drugih Monero klonova koji koriste iste Monero ključeve) i napraviti popis poznatih potrošenih izlaza koristeći monero-blockchain-blackball alat.&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Kako bi se zamaskirali ulazi koji se koriste u Monero transakciji, vanjski promatrač nebi smio odgonetnuti koji ulazi su iskorišteni u prstenu. U protivnom bi zaštita, koju nude potpisi prstenja, bila ugrožena. Ako su svi osim jednog ulaza vec bili iskorišteni otprije moguće je doznati koji je ulaz pravi, a to poništava zaštitu potpisa prstenja, odnosno jednu od tri glavne razine Monero zaštite privatnosti.&lt;br&gt;Kako bi pomogli transakcijama zaobići takve ulaze, može se korisiti popis poznatih potrošenih ulaza. Takav popis vodi Monero projekt i može se nabaviti na getmonero.org web stranici, te ga onda uvesti ovdje.&lt;br&gt;U protivnom, može se očitati lanac blokova (te lanac blokova drugih Monero klonova koji koriste iste Monero ključeve) i napraviti popis poznatih potrošenih izlaza koristeći monero-blockchain-mark-spent-outputs alat.&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1351,7 +1351,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Odaberite datoteku za učitavanje Blackball izlaza od</translation>
</message>
<message>
@ -1361,7 +1361,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Naziv datoteke sa blackball izlazima</translation>
</message>
<message>
@ -1376,7 +1376,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Ili ručno primjeni/ukloni blackball sa jednog izlaza:</translation>
</message>
<message>
@ -1391,12 +1391,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Primjeni Blackball</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Ukloni Blackball</translation>
</message>
<message>

View File

@ -1331,7 +1331,7 @@ A régi gyorsítótár fájlja át lesz nevezve és bármikor visszaállítható
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Kizárt tranzakció bemenetek</translation>
</message>
<message>
@ -1342,8 +1342,8 @@ A régi gyorsítótár fájlja át lesz nevezve és bármikor visszaállítható
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Ahhoz, hogy a gyűrű aláírások anonimak maradjanak, ki kell zárni az olyan tranzakció bemeneteket amiket egy másik (Monero-klón) blokkláncon már felhasználtak. Ha ez nem történik meg, esetleg egy rosszindulatú harmadik fél nagyobb eséllyel megtippelheti, hogy melyik a valódi tranzakció bemenet. Ez gyengítheti a Monero anonimitásának háromszintű vedelmét. Ahhoz, hogy ezeket a bemeneteket kizárd a tranzakcióidból, a getmonero.org fenntart egy folyamatosan frissített listát róluk, amit letöltés után itt tudsz importálni. Másik lehetőséged a blokklánc átvizsgálása a monero-blockchain-blackball programmal és egy lista készítése.</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Ahhoz, hogy a gyűrű aláírások anonimak maradjanak, ki kell zárni az olyan tranzakció bemeneteket amiket egy másik (Monero-klón) blokkláncon már felhasználtak. Ha ez nem történik meg, esetleg egy rosszindulatú harmadik fél nagyobb eséllyel megtippelheti, hogy melyik a valódi tranzakció bemenet. Ez gyengítheti a Monero anonimitásának háromszintű vedelmét. Ahhoz, hogy ezeket a bemeneteket kizárd a tranzakcióidból, a getmonero.org fenntart egy folyamatosan frissített listát róluk, amit letöltés után itt tudsz importálni. Másik lehetőséged a blokklánc átvizsgálása a monero-blockchain-mark-spent-outputs programmal és egy lista készítése.</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1357,7 +1357,7 @@ A régi gyorsítótár fájlja át lesz nevezve és bármikor visszaállítható
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Válaszd ki a fájlt amelyik a listát tartalmazza</translation>
</message>
<message>
@ -1367,7 +1367,7 @@ A régi gyorsítótár fájlja át lesz nevezve és bármikor visszaállítható
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Fájl neve ami a kizárt bemeneteket tartalmazza</translation>
</message>
<message>
@ -1382,7 +1382,7 @@ A régi gyorsítótár fájlja át lesz nevezve és bármikor visszaállítható
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Bemenet hozzáadása/eltávolítása sajátkezűleg:</translation>
</message>
<message>
@ -1397,12 +1397,12 @@ A régi gyorsítótár fájlja át lesz nevezve és bármikor visszaállítható
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Kizárás</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Engedélyezés</translation>
</message>
<message>

View File

@ -1325,7 +1325,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1336,7 +1336,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1351,7 +1351,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1361,7 +1361,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1376,7 +1376,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1391,12 +1391,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1334,7 +1334,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Output con blackball applicato</translation>
</message>
<message>
@ -1345,8 +1345,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Al fine di oscurare gli input che vengono spesi in una transazione Monero, non deve essere consentito ad un osservatore di individuare in un anello gli input che sono già stati spesi. Essere in grado di fare questo significa indebolire la protezione offerta dalle firme ad anello. Se si fosse a conoscenza del fatto che tutti gli input tranne uno sono già stati spesi, l&apos;input che viene veramente speso sarebbe palese, annullando di fatto l&apos;effetto delle firme ad anello, uno dei tre principali strati di protezione della privacy utilizzati da Monero.&lt;br&gt;Per fare in modo che le transazioni escludano tali input, si può ricorrere ad una lista di input di cui è già nota l&apos;avvenuta spesa ed il cui uso può essere evitato in una nuova transazione. Questa lista viene manutenuta dal Progetto Monero ed è disponibile sul sito getmonero.org; puoi importare la lista qui.&lt;br&gt;Alternativamente, puoi effettuare tu stesso/a una scansione della blockchain (e della blockchain dei cloni di Monero che riusano le chiavi) mediante lo strumento monero-blockchain-blackball per creare una lista di output già spesi.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Al fine di oscurare gli input che vengono spesi in una transazione Monero, non deve essere consentito ad un osservatore di individuare in un anello gli input che sono già stati spesi. Essere in grado di fare questo significa indebolire la protezione offerta dalle firme ad anello. Se si fosse a conoscenza del fatto che tutti gli input tranne uno sono già stati spesi, l&apos;input che viene veramente speso sarebbe palese, annullando di fatto l&apos;effetto delle firme ad anello, uno dei tre principali strati di protezione della privacy utilizzati da Monero.&lt;br&gt;Per fare in modo che le transazioni escludano tali input, si può ricorrere ad una lista di input di cui è già nota l&apos;avvenuta spesa ed il cui uso può essere evitato in una nuova transazione. Questa lista viene manutenuta dal Progetto Monero ed è disponibile sul sito getmonero.org; puoi importare la lista qui.&lt;br&gt;Alternativamente, puoi effettuare tu stesso/a una scansione della blockchain (e della blockchain dei cloni di Monero che riusano le chiavi) mediante lo strumento monero-blockchain-mark-spent-outputs per creare una lista di output già spesi.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1360,7 +1360,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Seleziona un file da cui caricare output con blackball applicata</translation>
</message>
<message>
@ -1370,7 +1370,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Nome del file con output su cui applicare blackball</translation>
</message>
<message>
@ -1385,7 +1385,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>O applica/rimuovi blackball ad un output singolo:</translation>
</message>
<message>
@ -1400,12 +1400,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Applica blackball</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Rimuovi blackball</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation></translation>
</message>
<message>
@ -1343,8 +1343,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>使Moneroトランザクションのどのインプットが使用されたのかを隠すために必要です1使使Moneroが使っている3つの主要なプライバシー保護レイヤーのうちの1つであるリング署名の効果が失われてしまいます&lt;br&gt;使使Moneroプロジェクトによって保守されgetmonero.orgのウェブサイトで公開されており&lt;br&gt;monero-blockchain-blackballというツールを使いMoneroのブロックチェーン(Moneroクローンのブロックチェン)使&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>使Moneroトランザクションのどのインプットが使用されたのかを隠すために必要です1使使Moneroが使っている3つの主要なプライバシー保護レイヤーのうちの1つであるリング署名の効果が失われてしまいます&lt;br&gt;使使Moneroプロジェクトによって保守されgetmonero.orgのウェブサイトで公開されており&lt;br&gt;monero-blockchain-mark-spent-outputsというツールを使いMoneroのブロックチェーン(Moneroクローンのブロックチェン)使&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation></translation>
</message>
<message>
@ -1368,7 +1368,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation></translation>
</message>
<message>
@ -1383,7 +1383,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>/:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation></translation>
</message>
<message>

View File

@ -1325,7 +1325,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1336,7 +1336,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1351,7 +1351,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1361,7 +1361,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1376,7 +1376,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1391,12 +1391,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ Sena piniginės talpyklos rinkmena bus pervadinta ir vėliau galės būti atstat
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Atmestos išvestys</translation>
</message>
<message>
@ -1343,7 +1343,7 @@ Sena piniginės talpyklos rinkmena bus pervadinta ir vėliau galės būti atstat
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1358,7 +1358,7 @@ Sena piniginės talpyklos rinkmena bus pervadinta ir vėliau galės būti atstat
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1368,7 +1368,7 @@ Sena piniginės talpyklos rinkmena bus pervadinta ir vėliau galės būti atstat
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Rinkmena su išvestimis kurias norite atmesti</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ Sena piniginės talpyklos rinkmena bus pervadinta ir vėliau galės būti atstat
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1398,12 +1398,12 @@ Sena piniginės talpyklos rinkmena bus pervadinta ir vėliau galės būti atstat
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Atmesti</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Atšaukti atmetimą</translation>
</message>
<message>

View File

@ -1343,7 +1343,7 @@ De naam van het oude cachebestand wordt gewijzigd, zodat het later kan worden he
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Uitgesloten outputs</translation>
</message>
<message>
@ -1354,9 +1354,9 @@ De naam van het oude cachebestand wordt gewijzigd, zodat het later kan worden he
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translatorcomment>Nobody who is stupid enough to use MoneroV will be smart enough to understand this.</translatorcomment>
<translation>Om te verbergen welke inputs in een Monero-transactie worden uitgegeven, moet een derde niet kunnen zien welke inputs in een ring al zijn uitgegeven. Daardoor zou de privacybescherming van ring-handtekeningen worden verzwakt. Als alle inputs op één na al zijn uitgegeven, is zichtbaar welke input echt wordt uitgegeven. Dan hebben ring-handtekeningen, een van de drie beschermingslagen van Monero, geen effect meer.&lt;br&gt;Met een lijst met bekende uitgegeven inputs kunt u voorkomen dat u ze in nieuwe transacties gebruikt. Deze lijst wordt onderhouden door het Monero-project en is beschikbaar op de website getmonero.org. U kunt de lijst hier importeren.&lt;br&gt;Maar u kunt ook zelf de blockchain doorzoeken (en van Monero gekopieerde blockchains waarop sleutels worden hergebruikt) met de tool monero-blockchain-blackball, om een lijst met bekende uitgegeven outputs te genereren.&lt;br&gt;</translation>
<translation>Om te verbergen welke inputs in een Monero-transactie worden uitgegeven, moet een derde niet kunnen zien welke inputs in een ring al zijn uitgegeven. Daardoor zou de privacybescherming van ring-handtekeningen worden verzwakt. Als alle inputs op één na al zijn uitgegeven, is zichtbaar welke input echt wordt uitgegeven. Dan hebben ring-handtekeningen, een van de drie beschermingslagen van Monero, geen effect meer.&lt;br&gt;Met een lijst met bekende uitgegeven inputs kunt u voorkomen dat u ze in nieuwe transacties gebruikt. Deze lijst wordt onderhouden door het Monero-project en is beschikbaar op de website getmonero.org. U kunt de lijst hier importeren.&lt;br&gt;Maar u kunt ook zelf de blockchain doorzoeken (en van Monero gekopieerde blockchains waarop sleutels worden hergebruikt) met de tool monero-blockchain-mark-spent-outputs, om een lijst met bekende uitgegeven outputs te genereren.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1370,7 +1370,7 @@ De naam van het oude cachebestand wordt gewijzigd, zodat het later kan worden he
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Selecteer een bestand waaruit u uitgesloten outputs wilt laden</translation>
</message>
<message>
@ -1380,7 +1380,7 @@ De naam van het oude cachebestand wordt gewijzigd, zodat het later kan worden he
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Naam van bestand met uit te sluiten outputs</translation>
</message>
<message>
@ -1395,7 +1395,7 @@ De naam van het oude cachebestand wordt gewijzigd, zodat het later kan worden he
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Of sluit één output handmatig uit of neem deze op:</translation>
</message>
<message>
@ -1410,12 +1410,12 @@ De naam van het oude cachebestand wordt gewijzigd, zodat het later kan worden he
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Uitsluiten</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Opnemen</translation>
</message>
<message>

View File

@ -1333,7 +1333,7 @@ Poprzednia pamięć podręczna portfela zostanie zapisana pod inną nazwą i mo
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Zablokowane wyjścia</translation>
</message>
<message>
@ -1344,8 +1344,8 @@ Poprzednia pamięć podręczna portfela zostanie zapisana pod inną nazwą i mo
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>W celu ukrycia, które wejścia w transakcji Monero wydawane, osoba postronna nie powinna być w stanie stwierdzić, które wejścia w pierścieniu już zostały wydane. Gdyby była w stanie to zrobić, osłabiłoby to ochronę zapewnioną przez podpisy pierścieniowe. Jeśli wiadomo, że wszystkie wejścia poza jednym zostały wydane, to staje się oczywiste, które wejście faktycznie jest wydawane, a to niweczy efekt podpisów pierścieniowych - jednych z trzech głównych warstw ochrony prywatności używanych przez Monero.&lt;br&gt;Aby pomóc transakcjom unikać tych wejść, lista już wydanych wejść może być użyta do pominięcia ich w nowych transakcjach. Takowa lista jest zarządzana przez projekt Monero i jest dostępna na stronie getmonero.org, skąd można tutaj pobrać.&lt;br&gt;Ewentualnie, możesz przeskanować blockchain (oraz blockchain klona Monero, który wykorzystuje ponownie klucze) samemu używając narzędzia monero-blockchain-blackball do utworzenia listy wydanych wyjść.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>W celu ukrycia, które wejścia w transakcji Monero wydawane, osoba postronna nie powinna być w stanie stwierdzić, które wejścia w pierścieniu już zostały wydane. Gdyby była w stanie to zrobić, osłabiłoby to ochronę zapewnioną przez podpisy pierścieniowe. Jeśli wiadomo, że wszystkie wejścia poza jednym zostały wydane, to staje się oczywiste, które wejście faktycznie jest wydawane, a to niweczy efekt podpisów pierścieniowych - jednych z trzech głównych warstw ochrony prywatności używanych przez Monero.&lt;br&gt;Aby pomóc transakcjom unikać tych wejść, lista już wydanych wejść może być użyta do pominięcia ich w nowych transakcjach. Takowa lista jest zarządzana przez projekt Monero i jest dostępna na stronie getmonero.org, skąd można tutaj pobrać.&lt;br&gt;Ewentualnie, możesz przeskanować blockchain (oraz blockchain klona Monero, który wykorzystuje ponownie klucze) samemu używając narzędzia monero-blockchain-mark-spent-outputs do utworzenia listy wydanych wyjść.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1359,7 +1359,7 @@ Poprzednia pamięć podręczna portfela zostanie zapisana pod inną nazwą i mo
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Wybierz plik, z którego załadować zablokowane wyjścia</translation>
</message>
<message>
@ -1369,7 +1369,7 @@ Poprzednia pamięć podręczna portfela zostanie zapisana pod inną nazwą i mo
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Nazwa pliku z wyjściami do zablokowania</translation>
</message>
<message>
@ -1384,7 +1384,7 @@ Poprzednia pamięć podręczna portfela zostanie zapisana pod inną nazwą i mo
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Lub ręcznie zablokuj/odblokuj pojedyncze wyjście:</translation>
</message>
<message>
@ -1399,12 +1399,12 @@ Poprzednia pamięć podręczna portfela zostanie zapisana pod inną nazwą i mo
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Zablokuj</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Odblokuj</translation>
</message>
<message>

View File

@ -1325,7 +1325,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Blackball&apos;d outputs!</translation>
</message>
<message>
@ -1336,8 +1336,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>In ord&apos;r to be obscurin&apos; which inputs in a XM-ARGHHH transact&apos;on are bein&apos; spent, a third party shant be abl&apos; to dig&apos;st which inputs in thee ring argh already be known to be spent. Bein&apos; abl&apos; to do so would be weakenin&apos; thee protect&apos;on afford&apos;d by ring signat&apos;res. If all but one o&apos; thee inputs are known to be already spent, then thee input bein&apos; actually spent becomes appar&apos;nt, thereby nullifyin&apos; thee effect o&apos; thee ring signat&apos;res, one o&apos; thee three main lay&apos;rs o&apos; privacy protecti&apos;n XM-ARGHHH uses.&lt;br&gt;To help ye transactions to be avoidin&apos; those inputs, a list o&apos; known spent ones can be us&apos;d to avoid usin&apos; them in new transact&apos;ons. Such a list be maintain&apos;d by thee Monero project and be availabl&apos; on thee getmonero.org website, and ye can be importin&apos; t&apos;is list &apos;ere.&lt;br&gt;Alternativ&apos;ly, ye can be scannin&apos; thee blockchain (and thee blockchain o&apos; the key-reusin&apos; Monero clones) yaself usin&apos; thee monero-blockchain-blackball tool an be creatin&apos; a list o&apos; known spent outputs.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>In ord&apos;r to be obscurin&apos; which inputs in a XM-ARGHHH transact&apos;on are bein&apos; spent, a third party shant be abl&apos; to dig&apos;st which inputs in thee ring argh already be known to be spent. Bein&apos; abl&apos; to do so would be weakenin&apos; thee protect&apos;on afford&apos;d by ring signat&apos;res. If all but one o&apos; thee inputs are known to be already spent, then thee input bein&apos; actually spent becomes appar&apos;nt, thereby nullifyin&apos; thee effect o&apos; thee ring signat&apos;res, one o&apos; thee three main lay&apos;rs o&apos; privacy protecti&apos;n XM-ARGHHH uses.&lt;br&gt;To help ye transactions to be avoidin&apos; those inputs, a list o&apos; known spent ones can be us&apos;d to avoid usin&apos; them in new transact&apos;ons. Such a list be maintain&apos;d by thee Monero project and be availabl&apos; on thee getmonero.org website, and ye can be importin&apos; t&apos;is list &apos;ere.&lt;br&gt;Alternativ&apos;ly, ye can be scannin&apos; thee blockchain (and thee blockchain o&apos; the key-reusin&apos; Monero clones) yaself usin&apos; thee monero-blockchain-mark-spent-outputs tool an be creatin&apos; a list o&apos; known spent outputs.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1351,7 +1351,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Ye best be choosin&apos; a file to load blackball&apos;d outputs from!</translation>
</message>
<message>
@ -1361,7 +1361,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent/unspent</source>
<translation>Filename wit&apos; outputs to thee blackb&apos;ll</translation>
</message>
<message>
@ -1376,7 +1376,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Or manual&apos;y blackb&apos;ll/unblackball a single output:</translation>
</message>
<message>
@ -1391,12 +1391,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Blackball!</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Unblackball!</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ O arquivo de cache da carteira antiga será renomeado e poderá ser restaurado p
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Saídas banidas</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ O arquivo de cache da carteira antiga será renomeado e poderá ser restaurado p
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Para ocultar quais entradas estão sendo gastas numa transação em Monero, um terceiro não deve ser capaz de saber quais entradas num anel foram gastas. Se ele for capaz, a proteção fornecida pelas assinaturas em anel é enfraquecida. Se todas as entradas forem identificadas como gastas, salvo uma, então a verdadeira entrada fica aparente, anulando o efeito das assinaturas em anel, que é uma das três principais camadas de proteção a privacidade que o Monero usa.&lt;br&gt;Para ajudar que as transações evitem essas entradas, uma lista de entradas gastas pode ser usada para evitar de adicioná-las em novas transações. Tal lista é mantida pelo projeto Monero e está disponível no website getmonero.org. Você pode importar essa lista aqui.&lt;br&gt;Como alternativa, você pode escanear o blockchain (e dos clones do Monero que reutilizam as chaves) usando a ferramenta monero-blockchain-blackball para criar uma lista de entradas gastas.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Para ocultar quais entradas estão sendo gastas numa transação em Monero, um terceiro não deve ser capaz de saber quais entradas num anel foram gastas. Se ele for capaz, a proteção fornecida pelas assinaturas em anel é enfraquecida. Se todas as entradas forem identificadas como gastas, salvo uma, então a verdadeira entrada fica aparente, anulando o efeito das assinaturas em anel, que é uma das três principais camadas de proteção a privacidade que o Monero usa.&lt;br&gt;Para ajudar que as transações evitem essas entradas, uma lista de entradas gastas pode ser usada para evitar de adicioná-las em novas transações. Tal lista é mantida pelo projeto Monero e está disponível no website getmonero.org. Você pode importar essa lista aqui.&lt;br&gt;Como alternativa, você pode escanear o blockchain (e dos clones do Monero que reutilizam as chaves) usando a ferramenta monero-blockchain-mark-spent-outputs para criar uma lista de entradas gastas.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ O arquivo de cache da carteira antiga será renomeado e poderá ser restaurado p
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Escolha o arquivo para carregar as saídas banidas</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ O arquivo de cache da carteira antiga será renomeado e poderá ser restaurado p
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Nome do arquivo com as saídas para banir</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ O arquivo de cache da carteira antiga será renomeado e poderá ser restaurado p
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Banir ou desbanir manualmente uma única saída:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ O arquivo de cache da carteira antiga será renomeado e poderá ser restaurado p
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Banir</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Desbanir</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ O ficheiro de cache antigo será renomeado e poderá ser restaurado mais tarde.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Transações em lista negra</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ O ficheiro de cache antigo será renomeado e poderá ser restaurado mais tarde.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>De forma a esconder qual é a verdadeira transação que está a ser gasta, Monero utiliza varias transacções selecionadas automaticamente na mesma transação, uma terceira pessoa não deve conseguir distinguir qual é a transação verdadeira das falsas. Caso o consiga fazer irá enfraquecer a a protecção dada pelas ring signatures. Se todas as transacções excepto uma forem conhecidas por terem sido gastas, então torna-se evidente qual é a transação que está a ser gasta e a utilização de ring signatures fica sem efeito, sendo as ring signatures uma das 3 camadas que permite a protecção de privacidade em Monero.&lt;br&gt;Para ajudar a evitar essas transacções, é-lhe fornecida uma lista com transacções conhecidas como gastas e assim pode evitar usa-las numa nova transação. Esta lista é mantida pelo Monero Project e está disponivel no site oficinal getmonero.org, e pode importar essa lista para aqui.&lt;br&gt;Em alternativa, pode utilizar a ferramenta monero-blockchain-blackball e criar essa mesma lista de transacções conhecidas como gastas.</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>De forma a esconder qual é a verdadeira transação que está a ser gasta, Monero utiliza varias transacções selecionadas automaticamente na mesma transação, uma terceira pessoa não deve conseguir distinguir qual é a transação verdadeira das falsas. Caso o consiga fazer irá enfraquecer a a protecção dada pelas ring signatures. Se todas as transacções excepto uma forem conhecidas por terem sido gastas, então torna-se evidente qual é a transação que está a ser gasta e a utilização de ring signatures fica sem efeito, sendo as ring signatures uma das 3 camadas que permite a protecção de privacidade em Monero.&lt;br&gt;Para ajudar a evitar essas transacções, é-lhe fornecida uma lista com transacções conhecidas como gastas e assim pode evitar usa-las numa nova transação. Esta lista é mantida pelo Monero Project e está disponivel no site oficinal getmonero.org, e pode importar essa lista para aqui.&lt;br&gt;Em alternativa, pode utilizar a ferramenta monero-blockchain-mark-spent-outputs e criar essa mesma lista de transacções conhecidas como gastas.</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ O ficheiro de cache antigo será renomeado e poderá ser restaurado mais tarde.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Por favor escolha um ficheiro para carregar uma lista negra de endereços</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ O ficheiro de cache antigo será renomeado e poderá ser restaurado mais tarde.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Nome do ficheiro com lista negra de endereços</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ O ficheiro de cache antigo será renomeado e poderá ser restaurado mais tarde.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Ou manualmente adicionar/remover da lista negra um único endereço:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ O ficheiro de cache antigo será renomeado e poderá ser restaurado mais tarde.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Adicionar Blackball</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Remover Blackball</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ Vechiul fișier cache va fi redenumit și va putea fi restaurat mai tâziu.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Rezultate respinse</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ Vechiul fișier cache va fi redenumit și va putea fi restaurat mai tâziu.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Pentru a ascunde ce inputuri sunt folosite intr-o tranzacție Monero, o terță parte nu ar trebui știe ce inputuri într-un inel au fost deja folosite. Dacă ar putea facă asta, ar slăbi protecția semnăturilor de inel. Dacă toate inputurile cu excepția unuia sunt deja știute fie folosite, atunci inputul ce va fi folosit devine vizibil, anulând efectul semnăturilor de inel, unul dintre cele trei straturi principale de protecție a confidențialității ce este folosit de Monero.&lt;br&gt;Pentru a ajuta tranzacțiile evite aceste inputuri, o listă a acestora ce sunt conuscute poate fi folosită pentru a evita utilizarea lor in noi tranzacții. O asemenea lista este întreținută de proiectul Monero și este disponibila la adresa getmonero.org, și puteți importa această lista aici.&lt;br&gt;Sau, puteți scana blockchain (și blockchain al clonelor Monero) inșivă folosind unealta monero-blockchain-blackball pentru a crea o listă de rezultate cunoscute folosite.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Pentru a ascunde ce inputuri sunt folosite intr-o tranzacție Monero, o terță parte nu ar trebui știe ce inputuri într-un inel au fost deja folosite. Dacă ar putea facă asta, ar slăbi protecția semnăturilor de inel. Dacă toate inputurile cu excepția unuia sunt deja știute fie folosite, atunci inputul ce va fi folosit devine vizibil, anulând efectul semnăturilor de inel, unul dintre cele trei straturi principale de protecție a confidențialității ce este folosit de Monero.&lt;br&gt;Pentru a ajuta tranzacțiile evite aceste inputuri, o listă a acestora ce sunt conuscute poate fi folosită pentru a evita utilizarea lor in noi tranzacții. O asemenea lista este întreținută de proiectul Monero și este disponibila la adresa getmonero.org, și puteți importa această lista aici.&lt;br&gt;Sau, puteți scana blockchain (și blockchain al clonelor Monero) inșivă folosind unealta monero-blockchain-mark-spent-outputs pentru a crea o listă de rezultate cunoscute folosite.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ Vechiul fișier cache va fi redenumit și va putea fi restaurat mai tâziu.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation> rog alegeți un fișier pentru a incărca outputuri blackballed</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ Vechiul fișier cache va fi redenumit și va putea fi restaurat mai tâziu.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Numele fișierului cu outputuri blackball</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ Vechiul fișier cache va fi redenumit și va putea fi restaurat mai tâziu.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Sau marcați un output de tip blackball/unblackball:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ Vechiul fișier cache va fi redenumit și va putea fi restaurat mai tâziu.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Blackball</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Unblackball</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Заблокированные выходы</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Для того чтобы скрыть какие входы в транзакциях Monero потрачены, третья сторона не должна сообщать какие входы в кольце уже задействованы в трате. Ведь если это сделать, то это ослабит защиту, обеспечиваемую кольцевыми подписями. Если известно, что все, кроме одного из входов, уже потрачены, то фактически трата входа становится очевидной, тем самым аннулируется эффект кольцевых подписей, одного из трех основных уровней защиты конфиденциальности Monero.&lt;br&gt;Чтобы помочь транзакциям избежать траты этих входов, можно использовать список известных израсходованных входов, чтобы избежать их использования в новых транзакциях. Такой список поддерживается проектом Monero и доступен на веб-сайте getmonero.org, и вы можете импортировать этот список здесь.&lt;br&gt;Кроме того, вы можете просканировать блокчейн (и блокчейны клонов Monero) самостоятельно, используя инструмент monero-blockchain-blackball, чтобы создать список известных потраченых входов.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Для того чтобы скрыть какие входы в транзакциях Monero потрачены, третья сторона не должна сообщать какие входы в кольце уже задействованы в трате. Ведь если это сделать, то это ослабит защиту, обеспечиваемую кольцевыми подписями. Если известно, что все, кроме одного из входов, уже потрачены, то фактически трата входа становится очевидной, тем самым аннулируется эффект кольцевых подписей, одного из трех основных уровней защиты конфиденциальности Monero.&lt;br&gt;Чтобы помочь транзакциям избежать траты этих входов, можно использовать список известных израсходованных входов, чтобы избежать их использования в новых транзакциях. Такой список поддерживается проектом Monero и доступен на веб-сайте getmonero.org, и вы можете импортировать этот список здесь.&lt;br&gt;Кроме того, вы можете просканировать блокчейн (и блокчейны клонов Monero) самостоятельно, используя инструмент monero-blockchain-mark-spent-outputs, чтобы создать список известных потраченых входов.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Пожалуйста, выберете файл для загрузки списка заблокированных выходов</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Выберите файл с блокируемыми выходами</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unpent:</source>
<translation>Или вручную заблокируйте/разблокируйте выход:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Заблокировать</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Разблокировать</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ Súbor starej cache bude premenovaný a môže byť obnovený neskôr.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Zakalené výstupy</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ Súbor starej cache bude premenovaný a môže byť obnovený neskôr.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Aby bolo možné skryť, ktoré vstupy v Monero transakcii sa vynakladajú, tretia strana by nemala vedieť, ktoré vstupy v okruhu známe. Možnosť tak urobiť by oslabila ochranu poskytovanú okruhovými podpismi. Ak je známe, že všetky vstupy vynaložené, tak aktuálne vynakladaný vstup sa jasne identifikuje, čím sa zruší účinok okuhových podpisov, čo je jedna z troch hlavných vrstiev ochrany súkromia, ktoré Monero používa.&lt;br&gt;Pomôcť transakciám vyhnúť sa týmto vstupom môžete použiť zoznam známych vstupov, aby ste sa vyhli ich použitiu v nových transakciách. Takýto zoznam si udržiava projekt Monero a je k dispozícii na webovej stránke getmonero.org a tu môžete tento zoznam importovať.&lt;br&gt;Alternatívne môžete prehliadať blockchain (a blockchain Monero klonov, ktoré tiež používajú Monero kľúče) sami pomocou nástroja monero-blockchain-blackball a vytvoriť zoznam známych vynaložených výstupov. &lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Aby bolo možné skryť, ktoré vstupy v Monero transakcii sa vynakladajú, tretia strana by nemala vedieť, ktoré vstupy v okruhu známe. Možnosť tak urobiť by oslabila ochranu poskytovanú okruhovými podpismi. Ak je známe, že všetky vstupy vynaložené, tak aktuálne vynakladaný vstup sa jasne identifikuje, čím sa zruší účinok okuhových podpisov, čo je jedna z troch hlavných vrstiev ochrany súkromia, ktoré Monero používa.&lt;br&gt;Pomôcť transakciám vyhnúť sa týmto vstupom môžete použiť zoznam známych vstupov, aby ste sa vyhli ich použitiu v nových transakciách. Takýto zoznam si udržiava projekt Monero a je k dispozícii na webovej stránke getmonero.org a tu môžete tento zoznam importovať.&lt;br&gt;Alternatívne môžete prehliadať blockchain (a blockchain Monero klonov, ktoré tiež používajú Monero kľúče) sami pomocou nástroja monero-blockchain-mark-spent-outputs a vytvoriť zoznam známych vynaložených výstupov. &lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ Súbor starej cache bude premenovaný a môže byť obnovený neskôr.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Prosím vyberte súbor, z ktorého chcete načítať odmietnuté výstupy</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ Súbor starej cache bude premenovaný a môže byť obnovený neskôr.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Názov súboru s výstupmi na odmietnutie</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ Súbor starej cache bude premenovaný a môže byť obnovený neskôr.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Alebo ručne odmietnite/povoľte jeden výstup:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ Súbor starej cache bude premenovaný a môže byť obnovený neskôr.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Odmietnuť</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Povoliť</translation>
</message>
<message>

View File

@ -1331,7 +1331,7 @@ Stara datoteka predpomnilnika denarnice bo preimenovana in se jo lahko obnovi po
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -1342,9 +1342,9 @@ Stara datoteka predpomnilnika denarnice bo preimenovana in se jo lahko obnovi po
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Da lahko v Monero transakciji zakrijete kateri inputi so plačani, tretja oseba ne sme vedeti, kateri inputi v obroču so že plačani. To bi zmanjšalo varnost, ki jo zagotavljajo obročni podpisi. Če je znano, da so vsi inputi razen enega izplačani, potem je zadnji input, ki se ga izplačuje očiten. S tem so obročni podpisi, eden izmed treh stebrov varne zasebnosti Monera, neefektivni.
Da se transakcije izognejo takšnim inputom, se uporablja lista znano že zapravljenih inputov, ki se jih ne uporablja v novih transakcijah. Takšno listo ureja Monero projekt in je dobavljiva na getmonero.org. To listo lahko uvoziš tukaj.&lt;br&gt; Alternativno lahko sam preiščeš blockchain (vključno z Monero kloni, ki si delijo ključe) z uporabo orodja monero-blockchain-blackball, ki ustvari listo znanih, že zapravljenih outputov.&lt;br&gt;</translation>
Da se transakcije izognejo takšnim inputom, se uporablja lista znano že zapravljenih inputov, ki se jih ne uporablja v novih transakcijah. Takšno listo ureja Monero projekt in je dobavljiva na getmonero.org. To listo lahko uvoziš tukaj.&lt;br&gt; Alternativno lahko sam preiščeš blockchain (vključno z Monero kloni, ki si delijo ključe) z uporabo orodja monero-blockchain-mark-spent-outputs, ki ustvari listo znanih, že zapravljenih outputov.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ Stara datoteka predpomnilnika denarnice bo preimenovana in se jo lahko obnovi po
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs mark as spent/unspent</source>
<translation>Izberi datoteko z blackball outputi iz</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ Stara datoteka predpomnilnika denarnice bo preimenovana in se jo lahko obnovi po
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Datoteka z blackball outputi</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ Stara datoteka predpomnilnika denarnice bo preimenovana in se jo lahko obnovi po
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation type="unfinished">Ali pa ročno določite posamezen output kot blackball:</translation>
</message>
<message>
@ -1403,12 +1403,12 @@ Stara datoteka predpomnilnika denarnice bo preimenovana in se jo lahko obnovi po
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@ -1331,7 +1331,7 @@ Stari fajl keša novčanika će biti preimenovan i može se povratiti kasnije.</
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Odbačeni izlazi</translation>
</message>
<message>
@ -1342,8 +1342,8 @@ Stari fajl keša novčanika će biti preimenovan i može se povratiti kasnije.</
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Da bi bilo nejasnije koji ulazi u Monero transakciji se troše, treća strana ne treba da bude u mogućnosti da zaključi koji ulazi u prstenu su već poznati kao potrošeni. To bi oslabilo zaštitu priuštenu prsten potpisima. Ako za sve osim jednog ulaza je poznato da su potrošeni, onda ulaz koji biva potrošen postaje očigledan, time poništavajući dejstvo prsten potpisa, koji čine jedan od tri glavna sloja privatnosti koje Monero koristi.&lt;br&gt;Da bi pomogli da se izbegnu takvi ulazi, lista poznatih potrošenih ulaza se može koristiti kako se ne bi koristili u novim transakcijama. Takva lista se održava od strane Monero projekta i dostupna na getmonero.org veb sajtu, i možete je uneti tu listu ovde.&lt;br&gt;Alternatnivno, možete skenirati blokčejn (i blokčejn Menoro klonova koji koriste iste ključeve) samostalno korišćenjem monero-blockchain-blackball alatke da napravite listu izlaza za koje je poznato da su potrošeni.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Da bi bilo nejasnije koji ulazi u Monero transakciji se troše, treća strana ne treba da bude u mogućnosti da zaključi koji ulazi u prstenu su već poznati kao potrošeni. To bi oslabilo zaštitu priuštenu prsten potpisima. Ako za sve osim jednog ulaza je poznato da su potrošeni, onda ulaz koji biva potrošen postaje očigledan, time poništavajući dejstvo prsten potpisa, koji čine jedan od tri glavna sloja privatnosti koje Monero koristi.&lt;br&gt;Da bi pomogli da se izbegnu takvi ulazi, lista poznatih potrošenih ulaza se može koristiti kako se ne bi koristili u novim transakcijama. Takva lista se održava od strane Monero projekta i dostupna na getmonero.org veb sajtu, i možete je uneti tu listu ovde.&lt;br&gt;Alternatnivno, možete skenirati blokčejn (i blokčejn Menoro klonova koji koriste iste ključeve) samostalno korišćenjem monero-blockchain-mark-spent-outputs alatke da napravite listu izlaza za koje je poznato da su potrošeni.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1357,7 +1357,7 @@ Stari fajl keša novčanika će biti preimenovan i može se povratiti kasnije.</
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Izaberite datoteku sa koje će se učitati izlazi za odbacivanje</translation>
</message>
<message>
@ -1367,7 +1367,7 @@ Stari fajl keša novčanika će biti preimenovan i može se povratiti kasnije.</
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Ime fajla sa izlazima za odbacivanje</translation>
</message>
<message>
@ -1382,7 +1382,7 @@ Stari fajl keša novčanika će biti preimenovan i može se povratiti kasnije.</
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Ili ručno odbacite/ne odbacite jedan izlaz:</translation>
</message>
<message>
@ -1397,12 +1397,12 @@ Stari fajl keša novčanika će biti preimenovan i može se povratiti kasnije.</
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Odbaci</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Ne odbaci</translation>
</message>
<message>

View File

@ -1331,7 +1331,7 @@ Den gamla plånbokens cache-fil kommer att ändra namn och kan återställas sen
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Svartlistade utgångar</translation>
</message>
<message>
@ -1342,8 +1342,8 @@ Den gamla plånbokens cache-fil kommer att ändra namn och kan återställas sen
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>För att dölja vilja ingångar som spenderas i en viss Monero-transaktion får en tredje part inte kunna avgöra vilka ingångar i en ring som med säkerhet redan har spenderats. Om det var möjligt skulle skyddet som ges av ringsignaturer försvagas. Om alla utom en av ingångarna med säkerhet redan har spenderats blir det uppenbart vilken ingång som faktiskt spenderas. upphävs effekten av ringsignaturer, vilket är ett av de tre huvudsakliga lager av sekretesskydd som Monero använder.&lt;br&gt;För att hjälpa transaktioner att undvika dessa ingångar kan en lista över med säkerhet spenderade utgångar användas för att undvika att dessa används i nya transaktioner. Monero-projektet upprätthåller en sådan lista och den finns tillgänglig webbplatsen getmonero.org. Du kan importera listan här.&lt;br&gt;Alternativt kan du själv skanna blockkedjan (och blockkedjan för Monero-kloner som återanvänder nycklar) genom att använda verktyget monero-blockchain-blackball för att skapa en lista över med säkerhet spenderade utgångar.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>För att dölja vilja ingångar som spenderas i en viss Monero-transaktion får en tredje part inte kunna avgöra vilka ingångar i en ring som med säkerhet redan har spenderats. Om det var möjligt skulle skyddet som ges av ringsignaturer försvagas. Om alla utom en av ingångarna med säkerhet redan har spenderats blir det uppenbart vilken ingång som faktiskt spenderas. upphävs effekten av ringsignaturer, vilket är ett av de tre huvudsakliga lager av sekretesskydd som Monero använder.&lt;br&gt;För att hjälpa transaktioner att undvika dessa ingångar kan en lista över med säkerhet spenderade utgångar användas för att undvika att dessa används i nya transaktioner. Monero-projektet upprätthåller en sådan lista och den finns tillgänglig webbplatsen getmonero.org. Du kan importera listan här.&lt;br&gt;Alternativt kan du själv skanna blockkedjan (och blockkedjan för Monero-kloner som återanvänder nycklar) genom att använda verktyget monero-blockchain-mark-spent-outputs för att skapa en lista över med säkerhet spenderade utgångar.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1357,7 +1357,7 @@ Den gamla plånbokens cache-fil kommer att ändra namn och kan återställas sen
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Välj en fil som svartlistade utgångar ska läsas in från</translation>
</message>
<message>
@ -1367,7 +1367,7 @@ Den gamla plånbokens cache-fil kommer att ändra namn och kan återställas sen
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Filnamn med utgångar som ska svartlistas</translation>
</message>
<message>
@ -1382,7 +1382,7 @@ Den gamla plånbokens cache-fil kommer att ändra namn och kan återställas sen
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent:</source>
<translation>Eller svartlista/av-svartlista en enda utgång manuellt:</translation>
</message>
<message>
@ -1397,12 +1397,12 @@ Den gamla plånbokens cache-fil kommer att ändra namn och kan återställas sen
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Svartlista</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Av-svartlista</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ Aşağıdaki bilgiler silinecek
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Oy birliği ile atılmış çıktılar</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ Aşağıdaki bilgiler silinecek
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Monero işleminde hangi girdilerin harcanacağını gizlemek için, üçüncü bir taraf, bir halkada hangi girdilerin zaten harcanmış olduğunu söyleyememelidir. Bunu yapabilmek, halka imzaların sağladığı korumayı zayıflatabilir. Girişlerden birinin dışında kalanın zaten harcanmış olduğu biliniyorsa, o zaman harcanan girdi görünür hale gelir ve böylece Monero kullanımının gizlilik korumasının üç ana katmanından biri olan halka imzaların etkisini ortadan kaldırır.&lt;br&gt; İşlemlerin bu girdilerden kaçınmasına yardım etmek için, harcandığı bilinen girdilerin bir listesi yeni işlemlerde kullanmaktan kaçınmak için kullanılabilir. Böyle bir liste Monero projesi tarafından korunur ve getmonero.org web sitesinde mevcuttur ve bu listeyi buradan içe aktarabilirsiniz.&lt;br&gt; Alternatif olarak, bilinen harcanan çıktıların bir listesini oluşturmak için monero-blockchain-blackball aracını kullanarak block zincirini (ve anahtarı tekrar kullanan Monero klonlarının blok zincirini), kendiniz de tarayabilirsiniz.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Monero işleminde hangi girdilerin harcanacağını gizlemek için, üçüncü bir taraf, bir halkada hangi girdilerin zaten harcanmış olduğunu söyleyememelidir. Bunu yapabilmek, halka imzaların sağladığı korumayı zayıflatabilir. Girişlerden birinin dışında kalanın zaten harcanmış olduğu biliniyorsa, o zaman harcanan girdi görünür hale gelir ve böylece Monero kullanımının gizlilik korumasının üç ana katmanından biri olan halka imzaların etkisini ortadan kaldırır.&lt;br&gt; İşlemlerin bu girdilerden kaçınmasına yardım etmek için, harcandığı bilinen girdilerin bir listesi yeni işlemlerde kullanmaktan kaçınmak için kullanılabilir. Böyle bir liste Monero projesi tarafından korunur ve getmonero.org web sitesinde mevcuttur ve bu listeyi buradan içe aktarabilirsiniz.&lt;br&gt; Alternatif olarak, bilinen harcanan çıktıların bir listesini oluşturmak için monero-blockchain-mark-spent-outputs aracını kullanarak block zincirini (ve anahtarı tekrar kullanan Monero klonlarının blok zincirini), kendiniz de tarayabilirsiniz.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ Aşağıdaki bilgiler silinecek
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Lütfen oybirliği ile atılmış çıktıları yüklemek için bir dosya seçin</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ Aşağıdaki bilgiler silinecek
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Lütfen oybirliği ile atılmış çıktıların olduğu dosya adı</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ Aşağıdaki bilgiler silinecek
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Veya bir çıktıyı manuel olarak oybirliği ile atın veya alın:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ Aşağıdaki bilgiler silinecek
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Oybirliği ile atma (Blackball)</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Oybirliği ile geri alma (Unblackball)</translation>
</message>
<message>

View File

@ -1331,7 +1331,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Заблоковані виходи</translation>
</message>
<message>
@ -1342,8 +1342,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Для того щоб приховати які входи в транзакціях Monero були витрачені, третя сторона не повинна повідомляти які входи в кільці вже задіяні в витраті. Адже якщо це зробити, то це послабить захист, який забезпечується кільцевими підписами. Якщо відомо, що всі, крім одного з входів, вже витрачені, то фактично трата входу стає очевидною, тим самим анулюється ефект кільцевих підписів, одного з трьох основних рівнів захисту конфіденційності Monero.&lt;br&gt;Щоб допомогти транзакціям уникнути витрати цих входів, можна використовувати список відомих витрачених входів, щоб уникнути їх використання в нових транзакціях. Такий список підтримується проектом Monero і доступний на веб-сайті getmonero.org, і ви можете імпортувати цей список тут.&lt;br&gt;Крім того, ви можете просканувати блокчейн (і блокчейни клонів Monero) самостійно, використовуючи інструмент monero-blockchain-blackball, щоб створити список відомих витрачених входів.&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Для того щоб приховати які входи в транзакціях Monero були витрачені, третя сторона не повинна повідомляти які входи в кільці вже задіяні в витраті. Адже якщо це зробити, то це послабить захист, який забезпечується кільцевими підписами. Якщо відомо, що всі, крім одного з входів, вже витрачені, то фактично трата входу стає очевидною, тим самим анулюється ефект кільцевих підписів, одного з трьох основних рівнів захисту конфіденційності Monero.&lt;br&gt;Щоб допомогти транзакціям уникнути витрати цих входів, можна використовувати список відомих витрачених входів, щоб уникнути їх використання в нових транзакціях. Такий список підтримується проектом Monero і доступний на веб-сайті getmonero.org, і ви можете імпортувати цей список тут.&lt;br&gt;Крім того, ви можете просканувати блокчейн (і блокчейни клонів Monero) самостійно, використовуючи інструмент monero-blockchain-mark-spent-outputs, щоб створити список відомих витрачених входів.&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1357,7 +1357,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>Будь ласка, виберіть файл для завантаження списку заблокованих виходів</translation>
</message>
<message>
@ -1367,7 +1367,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>Ім&apos;я файла зі списком заблокованих виходів</translation>
</message>
<message>
@ -1382,7 +1382,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>Або вручну заблокуйте/розблокуйте вихід:</translation>
</message>
<message>
@ -1397,12 +1397,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Заблокувати</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Розблокувати</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation>Blackball后的输出</translation>
</message>
<message>
@ -1343,8 +1343,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Monero交易中任何付款的去向, . . , , 使Monero三个主要隐私保护层之一的环签名彻底无效. &lt;br&gt; , 使使. Monero , getmonero.org , . &lt;br&gt; , ( Monero ), 使monero-blockchain-blackball工具创建已知已用输出的列表. &lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation>Monero交易中任何付款的去向, . . , , 使Monero三个主要隐私保护层之一的环签名彻底无效. &lt;br&gt; , 使使. Monero , getmonero.org , . &lt;br&gt; , ( Monero ), 使monero-blockchain-mark-spent-outputs工具创建已知已用输出的列表. &lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation>blackballed输出</translation>
</message>
<message>
@ -1368,7 +1368,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation>blackball的输出文件名</translation>
</message>
<message>
@ -1383,7 +1383,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>blackball/unblackball输出:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation>Blackball</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation>Unblackball</translation>
</message>
<message>

View File

@ -1332,7 +1332,7 @@ The old wallet cache file will be renamed and can be restored later.
<message>
<location filename="../pages/SharedRingDB.qml" line="119"/>
<location filename="../pages/SharedRingDB.qml" line="121"/>
<source>Blackballed outputs</source>
<source>Outputs marked as spent</source>
<translation></translation>
</message>
<message>
@ -1343,8 +1343,8 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="122"/>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-blackball tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation> Monero Monero 的三大保護隱私保護其中之一: 環狀簽名&lt;br&gt;使 Monero getmonero.org &lt;br&gt;使 monero-blockchain-blackball tool (使)&lt;br&gt;</translation>
<source>In order to obscure which inputs in a Monero transaction are being spent, a third party should not be able to tell which inputs in a ring are already known to be spent. Being able to do so would weaken the protection afforded by ring signatures. If all but one of the inputs are known to be already spent, then the input being actually spent becomes apparent, thereby nullifying the effect of ring signatures, one of the three main layers of privacy protection Monero uses.&lt;br&gt;To help transactions avoid those inputs, a list of known spent ones can be used to avoid using them in new transactions. Such a list is maintained by the Monero project and is available on the getmonero.org website, and you can import this list here.&lt;br&gt;Alternatively, you can scan the blockchain (and the blockchain of key-reusing Monero clones) yourself using the monero-blockchain-mark-spent-outputs tool to create a list of known spent outputs.&lt;br&gt;</source>
<translation> Monero Monero 的三大保護隱私保護其中之一: 環狀簽名&lt;br&gt;使 Monero getmonero.org &lt;br&gt;使 monero-blockchain-mark-spent-outputs tool (使)&lt;br&gt;</translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="143"/>
@ -1358,7 +1358,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="156"/>
<source>Please choose a file to load blackballed outputs from</source>
<source>Please choose a file from which to load outputs to mark as spent</source>
<translation></translation>
</message>
<message>
@ -1368,7 +1368,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="174"/>
<source>Filename with outputs to blackball</source>
<source>Filename with outputs to mark as spent</source>
<translation></translation>
</message>
<message>
@ -1383,7 +1383,7 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="214"/>
<source>Or manually blackball/unblackball a single output:</source>
<source>Or manually mark a single output as spent/unspent:</source>
<translation>/:</translation>
</message>
<message>
@ -1398,12 +1398,12 @@ The old wallet cache file will be renamed and can be restored later.
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="238"/>
<source>Blackball</source>
<source>Mark as spent</source>
<translation></translation>
</message>
<message>
<location filename="../pages/SharedRingDB.qml" line="247"/>
<source>Unblackball</source>
<source>Mark as unspent</source>
<translation></translation>
</message>
<message>