From 841ed5ad2dd6a5d4f3a435e5b54d60782b0fa804 Mon Sep 17 00:00:00 2001 From: acktarius Date: Mon, 10 Feb 2025 21:54:57 -0500 Subject: [PATCH] translation * add french * refresh .ts file * add CAD currency --- .github/workflows/check.yml | 1 + .github/workflows/windows.yml | 1 + .gitignore | 2 +- conceal-desktop.pro | 3 +- src/gui/OverviewFrame.cpp | 15 +- src/gui/ui/overviewframe.ui | 61 +- src/images/fr.png | Bin 0 -> 378 bytes src/languages/cn.qm | Bin 24866 -> 25654 bytes src/languages/cn.qph | 2263 +++++++++++++++++----------- src/languages/cn.ts | 538 +++---- src/languages/en.ts | 11 +- src/languages/fr.qm | Bin 0 -> 41631 bytes src/languages/fr.qph | 1922 ++++++++++++++++++++++++ src/languages/fr.ts | 2612 +++++++++++++++++++++++++++++++++ src/languages/ru.qm | Bin 35137 -> 36203 bytes src/languages/ru.qph | 2122 +++++++++++++++----------- src/languages/ru.ts | 641 ++++---- src/languages/tr.qm | Bin 31512 -> 32614 bytes src/languages/tr.qph | 2034 ++++++++++++++----------- src/languages/tr.ts | 531 +++---- src/resources.qrc | 2 + 21 files changed, 9290 insertions(+), 3469 deletions(-) create mode 100644 src/images/fr.png create mode 100644 src/languages/fr.qm create mode 100644 src/languages/fr.qph create mode 100644 src/languages/fr.ts diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index caef3205..94987f56 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -82,6 +82,7 @@ jobs: lrelease src/languages/cn.ts lrelease src/languages/ru.ts lrelease src/languages/tr.ts + lrelease src/languages/fr.ts New-Item "$build_folder\$release_folder" -ItemType Directory cd "$build_folder" diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b9142c43..5b8f9f86 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -77,6 +77,7 @@ jobs: lrelease src/languages/cn.ts lrelease src/languages/ru.ts lrelease src/languages/tr.ts + lrelease src/languages/fr.ts New-Item "$build_folder\$release_folder" -ItemType Directory cd "$build_folder" diff --git a/.gitignore b/.gitignore index 03e21061..6dada4f5 100644 --- a/.gitignore +++ b/.gitignore @@ -29,7 +29,7 @@ ui_*.h *.jsc Makefile* *build-* -*.qm +#*.qm *.prl # Qt unit tests diff --git a/conceal-desktop.pro b/conceal-desktop.pro index 8ca47a27..fc3bacf7 100644 --- a/conceal-desktop.pro +++ b/conceal-desktop.pro @@ -708,4 +708,5 @@ RESOURCES += src/resources.qrc TRANSLATIONS += src/languages/cn.ts \ src/languages/en.ts \ src/languages/ru.ts \ - src/languages/tr.ts + src/languages/tr.ts \ + src/languages/fr.ts diff --git a/src/gui/OverviewFrame.cpp b/src/gui/OverviewFrame.cpp index bb102111..08c18470 100644 --- a/src/gui/OverviewFrame.cpp +++ b/src/gui/OverviewFrame.cpp @@ -183,6 +183,7 @@ namespace WalletGui m_ui->m_language->addItem("TRY"); m_ui->m_language->addItem("CNY"); m_ui->m_language->addItem("AUD"); + m_ui->m_language->addItem("CAD"); m_ui->m_language->addItem("NZD"); m_ui->m_language->addItem("SGD"); m_ui->m_language->addItem("LKR"); @@ -348,6 +349,10 @@ namespace WalletGui { m_ui->m_chinese->setChecked(true); } + else if (language.compare("fr") == 0) + { + m_ui->m_french->setChecked(true); + } else { m_ui->m_english->setChecked(true); @@ -486,11 +491,11 @@ namespace WalletGui numUnlockedOutputs = WalletAdapter::instance().getNumUnlockedOutputs(); if (numUnlockedOutputs >= 100) { - m_ui->m_optimizationMessage->setText("Recommended [" + QString::number(numUnlockedOutputs) + "]"); + m_ui->m_optimizationMessage->setText(tr("Recommended") + " [" + QString::number(numUnlockedOutputs) + "]"); } else { - m_ui->m_optimizationMessage->setText("Not required [" + QString::number(numUnlockedOutputs) + "]"); + m_ui->m_optimizationMessage->setText(tr("Not required") + " [" + QString::number(numUnlockedOutputs) + "]"); } if (!Settings::instance().isEncrypted()) @@ -525,7 +530,7 @@ namespace WalletGui } else { - m_ui->b2_encryptWalletButton->setText("CHANGE PASSWORD"); + m_ui->b2_encryptWalletButton->setText(tr("CHANGE PASSWORD")); } /* Don't show the LOCK button if the wallet is not encrypted */ @@ -1814,6 +1819,10 @@ namespace WalletGui { language = "cn"; } + else if (m_ui->m_french->isChecked()) + { + language = "fr"; + } else { language = "en"; diff --git a/src/gui/ui/overviewframe.ui b/src/gui/ui/overviewframe.ui index 9202b8a0..a0e626a2 100644 --- a/src/gui/ui/overviewframe.ui +++ b/src/gui/ui/overviewframe.ui @@ -8434,13 +8434,13 @@ padding-left: 5px; - 150 + 130 20 - 150 + 130 20 @@ -8479,13 +8479,13 @@ padding-left: 5px; - 150 + 130 20 - 150 + 130 20 @@ -8524,13 +8524,13 @@ padding-left: 5px; - 150 + 130 20 - 150 + 130 20 @@ -8569,13 +8569,13 @@ padding-left: 5px; - 150 + 130 20 - 150 + 130 20 @@ -8604,6 +8604,51 @@ padding-left: 5px; + + + + + 0 + 0 + + + + + 130 + 20 + + + + + 130 + 20 + + + + + Poppins + + + + color: #fff; + + border: 0px; + + + French + + + + :/images/flags/fr:/images/flags/fr + + + false + + + buttonGroup + + + diff --git a/src/images/fr.png b/src/images/fr.png new file mode 100644 index 0000000000000000000000000000000000000000..79d44dd1048c9ab6ed737b33f25de362a6f7bad7 GIT binary patch literal 378 zcmeAS@N?(olHy`uVBq!ia0y~yVAKJ!PcSh9N&Sr`$AA<|x}&cn1H;CC?mvmFK)yn< zN02WALzNl>LqiJ#!!Mvv!wUw6QUeBtR|yOZRx=nF#0%!^3bX-Aa0d88}6fP#!k-tI1p|Cw~}0Xgg?p1!W^FPXT6HRJ*>+~orb2_z@_l>zA#AU*-aU@$M) z%ml~?@^oqaEK+{!ATq8ZmbBh#G>v_@H=30YkiEtl|+3i8bn*L@^rc18Q{I#%donv&Z)z^Ut0gqOLxm(iUI0 zs~>(ob<96KZLsc4f8ZPdpti;p0P-x~%>!q2hh4f9Hgy?<**?x7g@4#d)!>P z!7MprRRHKl@Rhjl6U`@?*&9gx$-&6V?Zf?&LZ)q(K$8B(pCs>?yC*ULsw%KQz5`Wy za21m=PkTuI@wpbjoGBk`c|&%wR6hRrAW3>4LDqW*Kvj`2HP8bfU7nEh`!Rs=7Vct7 zk!3FqFw2?bN0$Lu2~L+5AzeN;NQ+afKS>XjvlX=kWHZ^X6uWlJ1u&)JF6kz@)}OeC zC$FnhaH1>&>1;S(X4LR!l><9To;lltay#Bie`fF;;BD!V=>3p9=&y3?$hTitPP+cwt?(CGJrrq#c`I`Y&v zRHV$9p=hc%<>^wb{Ks>o7l(_|)S9CUH*#%d#NA%)4qb4_Mk6z>@QJWOC zEw;^@g)qg#`mH%(zLBqm7_MYpf-{u)pUw+QR?Sa|k;$yfD>}rsSge+E_bkkY!j92s z2NIoNv$uv?#GGMSq)q572U+Q(+ zoE}@fS8R5MczS%zSG}T1h(ZP5>a1^cH#@~P!5$XU&^TjE;y;6Hj5*k6_!22wKg_?3 W8M?|OdK>L-Tg!iQ@2fKo$^QUX;4L5k delta 548 zcmXAmT}YF06vm(T|4z5Px-C<2+N(|4q>rU2W)4zZf|l;fZMv+vq^$5FkdPusq4h-( z!93n+8E3XH{OV5r29RZqQmziyajA8@xjFMkmV4Y`4Rs@)B zoUSRVSkDEDD5@p*qnxQgKH!omt@ypOJEJ_{Uj~Y|vg%0EYECVc=YFLe<%qlEyEN6R z0P32g7X^brqg9GWhJkvWly2ArY!%YlCkN1dMq0n}g`Xdk{w5y)&QzW{`W7f`&nwMD z0F^b*w4LN`w`p0~%z6@3q_R?<>JW1d(YVT@J6+=ijGy!G+^hz?0a{g^-*5A4?s|CI zeo`}89|J^lRtvS7ndcl`OS@(%dX6uP(6G9v%=JUNaQh`-zM=it#F;sq+VndMe_4js z)Rv-K?VSGZs4hIudz=Tk8DC?J+c6sq^2LAdNvFQ+*yz(>aA?+0?!9l2uO?2pvQez` Wu(pEY-PcLsYoXo~8?lMrN$Ecc0 - About %1 - 大约1% + Select address + 选择地址 + + + CHOOSE + 选择 + + + Frame + Frame + + + Change Password + 修改密码 + + + Current Password + 当前密码 + + + New Password + 新密码 + + + Confirm New Password + 确认新密码 - <html><head/><body><p>Version %1</p><p>Conceal.Network is a decentralized blockchain bank, with deposits and investments paying interest rates, without involvement of financial institutions, powered by 100% open source code. Conceal.Network enables untraceable and anonymous messaging, and a secure way to transfer funds. Using a distributed public ledger, the sender and receiver are kept anonymous.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">http://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> + Password not confirmed + 密码未确认 + + + SAVE + 保存 + + + CANCEL + 取消 + + + Contact + + Label + 标签 + + + Address + 地址 + + + Payment ID + 付款ID + + + OK + + + + CANCEL + 取消 + + + Deposit Details + 存款明细 + CLOSE 关闭 - The Conceal Wallet - Conceal 钱包 + Saving data + 保存数据 - Select address - 选择地址 + %1 wallet is saving data. +Please wait... + %1 钱包正在保存数据。 +请耐心等待... - CHOOSE - 选择 + Import GUI key + 导入 GUI KEY - Address Book - 地址簿 + Import GUI Key + 导入 GUI KEY - ADDRESS BOOK - 地址簿 + GUI Key + GUI KEY - COPY ADDRESS - 复制地址 + Wallet Path + 钱包路径 - REMOVE ADDRESS - 删除地址 + Where would you like to save your wallet? + - ADD NEW ADDRESS - 增加一个新地址 + IMPORT + 导入 - BACK - 返回 + CANCEL + 取消 - Frame - Frame + Recreate your wallet with the GUI key + 根据GUI KEY重新创建你的钱包 - Settings - 设置 + Dialog + 对话框 - BACK - 返回 + Import Private Keys + 导入密钥 - OPTIMIZE NOW - 优化 + Recreate your wallet with the secret spend and view keys + 根据支出密钥与查看密钥重新创建你的钱包 - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">This process will optimize your wallet for large transactions. The optimization will take approximately 22 minutes. Please note that you will not be able to spend any of your funds until the optimization process is complete. In some cases, the wallet might need optimization more than once.</span></p></body></html> - 此过程将优化您的钱包以进行大型交易。优化过程大约需要22分钟。请注意,在优化过程完成之前,您将无法花费任何资金。在某些情况下,钱包可能需要多次优化。 + Private Spend Key + 支出私钥 - Optimization recommended for this wallet - 建议对此钱包进行优化 + Private View Key + 查看私钥 - Optimize Wallet - 优化钱包 + Wallet Path + 钱包路径 - Auto Optimization - 自动优化 + IMPORT + 导入 + + + CANCEL + 取消 + + + Import Private Keys + 导入密钥 + + + Recreate your wallet with the secret spend and view keys + 根据支出密钥与查看密钥重新创建你的钱包 + + + Private Spend Key + 支出私钥 + + + Private View Key + 查看私钥 + + + Wallet Path + 钱包路径 + + + Where would you like to save your wallet? + + + + IMPORT + 导入 + + + CANCEL + 取消 + + + Import :: Mnemonic Seed + 导入::助记词种子 + + + Recreate your wallet with the 25 word mnemonic seed + 采用25个助记词种子重新创建你的钱包 + + + Import Mnemonic Seed + 导入助记词种子 + + + Mnemonic Seed + 助记词种子 + + + Wallet Path + 钱包路径 + + + IMPORT + 导入 + + + CANCEL + 取消 + + + Import Mnemonic Seed + 导入助记词种子 + + + Recreate your wallet with the 25 word mnemonic seed + 采用25个助记词种子重新创建你的钱包 + + + Mnemonic Seed + 助记词种子 + + + Wallet Path + 钱包路径 + + + Where would you like to save your wallet? + + + + IMPORT + 导入 + + + CANCEL + 取消 + + + Import + 导入 + + + Import a tracking wallet (view-only) + 导入仅查看钱包 + + + Import Tracking Key + 跟踪KEY + + + Tracking Key + 跟踪KEY + + + Wallet Path + 钱包路径 + + + IMPORT + 导入 + + + CANCEL + 取消 + + + Dialog + 对话框 + + + Wallet path: + 钱包路径: + + + Tracking key + 跟踪KEY + + + EXIT + 退出 + + + IMPORT VIEW ONLY WALLET + 导入仅查看钱包 + + + Import Tracking Key + 跟踪KEY + + + Import a tracking wallet (view-only) + 导入仅查看钱包 + + + Tracking Key + 跟踪KEY + + + Wallet Path + 钱包路径 + + + Where would you like to save your wallet? + + + + IMPORT + 导入 + + + CANCEL + 取消 + + + Enter password + 输入密码 + + + Type your password... + + + + CONTINUE + 继续 + + + Incorrect Password. Please try again. + + + + Welcome Back + + + + currentWallet + 当前钱包 + + + Click CONTINUE or press ENTER to unlock your wallet + + + + Conceal Desktop 6.2.1 + + + + HELP + 帮助 + + + EXIT + 退出 + + + CHANGE + + + + Click CHANGE to choose (or create) another wallet + + + + MainWindow + 主窗口 + + + OVERVIEW + 概述 - ENABLE - 打开 + SEND + 发送 - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">Enable auto-optimize and the wallet will automatically optimize your wallet in the background while your wallet is open. The operation will only run if the wallet requires optimization . The process will check every 15 minutes. Auto optimization is disbaled by default.</span></p></body></html> - 启用自动优化,当钱包打开时,钱包会在后台自动优化您的钱包。仅当钱包需要优化时,此操作才会运行。该过程将每15分钟检查一次。默认情况下,自动优化处于禁用状态。 + KEYS + KEYS - Rescan Wallet - 重置钱包 + TRANSACTIONS + 交易 - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">When you rescan, the wallet scans the blockchain again to refresh your wallet and transaction details.</span></p></body></html> - 重新扫描时,钱包再次扫描区块链以刷新您的钱包和交易详细信息。 + Exit + 退出 - RESCAN NOW - 重置钱包 + Ctrl+Q + Ctrl+Q - Close to Tray - 窗口最小化 + ADDRESS BOOK + 地址簿 - Minimize to Tray - 减少到最小 + Create wallet + 创建钱包 - Built-in Node - 内置节点 + Open wallet + 打开钱包 - Custom Remote Node - 自定义远程节点 + Encrypt wallet + 加密钱包 - Automatic Remote Node - 自动远程节点 + Change password + 修改密码 - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">By default your wallet will connect using the built-in node, helping with decentralisation. You can also use a remote node if you dont want to download the entire blockchain.Please note that some remote nodes will have fees when sending transactions.</span></p></body></html> - 默认情况下,您的钱包将使用内置节点进行连接,以帮助分散。如果您不想下载整个区块链,也可以使用远程节点。请注意,某些远程节点在发送交易时会收费 + About + 关于 - Set Connection Type - 连接设置 + About Qt + 关于QT - Russian - 俄语 + Backup wallet + 备份钱包 - Turkish - 土耳其 + Start on system login + 系统登录时启动 - English - 英文 + Minimize to tray + 减少到最小 - Select Language - 选择你的语言 + Close to tray + 窗口最小化 - Other - + MESSAGES + 消息 - SAVE - 保存 + SEND MESSAGE + 发送消息 - Chinese - 中文 + Import GUI key + 导入 GUI KEY - Change Password - 修改密码 + DEPOSITS + 存款 - Current Password - 当前密码 + BANKING + 银行业务 - New Password - 新密码 + Reset wallet + 重置钱包 - Confirm New Password - 确认新密码 + Import spend/view key + 导入支出/查看 KEY - Password not confirmed - 密码未确认 + Import mnemonic seed + 导入助记词种子 - SAVE - 保存 + Connection settings + 连接设置 - CANCEL - 取消 + Optimize wallet + 优化钱包 - Deposit Details - 存款明细 + Import view wallet + 导入查看钱包 - CLOSE - 关闭 + Conceal Desktop + Frame Frame - BACK - 返回 + Send To: + 发送到: - BANKING - 银行业务 + Message + 消息 - CREATE - 创建 + Message Details + - Select the length of your deposit - 选择存款的期限 + Block height + 区块高度 - The fee for this deposit: - 此存款的费用: + Amount + 金额 - How much would you like to deposit? - 你想存多少? + Transaction hash + 交易哈希 - 5040 blocks - + Message size (bytes) + 消息大小(字节) - Interest earned at the end of your deposit: - 存款到期时赚取的利息: + SAVE TO FILE + 保存文件 - 0.001000 - + OK + - interestLabel - 利息标签 + New address + 新地址 - (minimum of 1 CCX) - 最少1个CCX + Address: + 地址: - (minimum term of 1 week, maximum 52 weeks) - 最短期限为1周,最长期限为52周 + Label: + 标签: - Length in blocks: - 区块高度 + Payment ID: + 付款ID: - ADD ALL - 全选 + CANCEL + 取消 - Unlocked Investments - 未锁定投资 + OK + - WITHDRAW - 取出 + Enter password + 输入密码 - Withdraw - + New Password + 新密码 - Unlocked Deposits - 未锁定存款 + Confirm Password + 确认密码 - Total Unlocked - 解锁总数 + Password not confirmed + 密码未确认 - INTEREST % PER WEEK - 利息%每周 + SAVE + 保存 - Weeks - + CLOSE + 关闭 - Interest - 利息 + Frame + Frame - NEW DEPOSIT - 新存款 + BANKING + 银行业务 - NEW INVESTMENT - 新投资 + INBOX + 收件箱 - Select the length of your investment - 选择投资的期限 + ABOUT + 关于 - Fee - 费用 + TRANSACTIONS + 交易 - Quarters - + SETTINGS + 设置 - How much would you like to invest? - 你想投资多少? + WALLET + 钱包 - 68400 blocks - + First + 第一 - CCX - + Second + 第二 - investmentInterest - 投资利息 + Third + 第三 - (minimum of 50,000 CCX) - 最少50,000个CCX + Fourth + 第四 - (minimum term of 1 quarter, maximum 20 quarters) - 最短期限为1季度,最长期限为20季度 + Fifth + 第五 - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - + Sixth + 第六 - Legal Disclaimer - 法律免责声明 + DASHBOARD + 仪表板 - <html><head/><body><p>Conceal is an open source experimental project, which means that there is no company behind it. This project is supported by the community, meaning there is no stable, full-time team and no physical headquarters from which the projects runs its operations. </p><p>Conceal is distributed in the hope that it will be useful to mankind, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANT ABILITY or FITNESS FOR A PARTICULAR PURPOSE.</p><p>Copyright Notice </p><p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: </p><p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. </p><p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p><p>Copyright 2018-2019 - Conceal.Network</p></body></html> - + ADDRESS BOOK + 地址簿 - CLOSE - 关闭 + ABOUT QT + 关于QT - Saving data - 保存数据 + LOCK + - %1 wallet is saving data. -Please wait... - 钱包正在保存数据。 -请耐心等待... + DEPOSITS + 存款 - Import GUI key - 导入 GUI KEY + Locked + 锁住 - Import GUI Key - 导入 GUI KEY + DEPOSIT + 存款 - GUI Key - GUI KEY + Withdrawable + 可取出 - Wallet Path - 钱包路径 + INVESTMENTS + 投资 - ... - + COPY WALLET ADDRESS + 复制地址 - IMPORT - 导入 + currentWallet + 当前钱包 - CANCEL - 取消 + SEND FUNDS + 发送资金 - Recreate your wallet with the GUI key - 根据GUI KEY重新创建你的钱包 + NEW MESSAGE + 新消息 - Import :: Mnemonic Seed - 导入::助记词种子 + CONTACT US / STAY INFORMED + 联系我们 - Recreate your wallet with the 25 word mnemonic seed - 采用25个助记词种子重新创建你的钱包 + Discord + - Import Mnemonic Seed - 导入助记词种子 + Telegram + - Mnemonic Seed - 助记词种子 + Twitter + - Wallet Path - 钱包路径 + Medium + - IMPORT - 导入 + Locked Deposits + 锁定存款 - CANCEL - 取消 + Available + 可用 - ... - + TOTAL BALANCE + 总余额 - Dialog - 对话框 + Portfolio + 投资组合 - Wallet path: - 钱包路径: + RECENT ACTIVITY + 最近 - ... + VOLUME - Tracking key - 跟踪KEY + MARKETCAP + 市值 + + + MARKET INFORMATION + 市场信息 - IMPORT - 导入 + HISTORICAL DATA + 历史数据 - EXIT - 退出 + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Poppins'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8.25pt;">This is your transaction history. It is a list of all incoming and outgoing transactions, deposits, and optimizations. If there are any discrpencises, please do a rescan of your wallet to purge any failed transactions from the list. Double-click individual entires to get a more detailed view.</span></p></body></html> + 这是您的交易记录。 它是所有进出交易,存款和优化的列表。 如果有任何不符之处,请重新扫描您的钱包以清除列表中所有失败的交易。 双击单个整体以获得更详细的视图。 - IMPORT VIEW ONLY WALLET - 导入仅查看钱包 + MESSAGE OVERVIEW + 消息概述 - Connection Settings - 连接设置 + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Poppins'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8.25pt;">A list of icoming and outgoing messages for this wallet. </span></p></body></html> + 此钱包的传入和传出消息的列表。 - Select Your Language - 选择你的语言 + Connection + 连接设置 - English - 英文 + Custom Remote Node + 自定义远程节点 - CLOSE - 关闭 + Built-in Node + 内置节点 - SAVE - 保存 + Automatic Remote Node + 自动远程节点 - Russian - 俄语 + Set connection type + 连接设置 - Turkish - 土耳其 + SAVE + 保存 - Chinese - 中文 + Optimization + 优化中 - Links - 链接 + Auto optimization + 自动优化 - <html><head/><body><p align="center">Website<br/><a href="https://conceal.network"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network</span></a></p><p align="center">Discord<br/><a href="https://discord.conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://discord.conceal.network/</span></a></p><p align="center">Telegram<br/><a href="https://t.co/55klBHKGUR"><span style=" text-decoration: underline; color:#ffa500;">https://t.co/55klBHKGUR</span></a></p><p align="center">Twitter<br/><a href="https://twitter.com/ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://twitter.com/ConcealNetwork</span></a></p><p align="center">Reddit<br/><a href="https://www.reddit.com/r/ConcealNetwork/"><span style=" text-decoration: underline; color:#ffa500;">https://www.reddit.com/r/ConcealNetwork/</span></a></p><p align="center">Medium<br/><a href="https://medium.com/@ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://medium.com/@ConcealNetwork</span></a></p><p align="center">Github<br/><a href="https://github.com/ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://github.com/ConcealNetwork</span></a></p><p align="center">Bitcointalk<br/><a href="https://bitcointalk.org/index.php?topic=5086106"><span style=" text-decoration: underline; color:#ffa500;">https://bitcointalk.org/index.php?topic=5086106</span></a></p></body></html> + Website - CLOSE - 关闭 - - - MainWindow - 主窗口 + Web Wallet + - OVERVIEW - 概述 + Click to Copy + - SEND - 发送 + Settings + - KEYS - KEYS + Show QR Code + - TRANSACTIONS - 交易 + Lock Wallet + 锁钱包 - Exit - 退出 + Large transactions + 大型交易 - Ctrl+Q - Ctrl+Q + OPTIMIZE + 优化 - ADDRESS BOOK - 地址簿 + START + - Create wallet - 创建钱包 + Rescan wallet + 重置钱包 - Open wallet - 打开钱包 + ENABLE + 打开 - Encrypt wallet - 加密钱包 + OPTIMIZE NOW + 优化 - Change password - 修改密码 + START RESCAN + 重置钱包 - About - 关于 + (Optimization not required) + (不需要优化) - About Qt - 关于QT + Font + - Backup wallet - 备份钱包 + Preferences + 优先 - Start on system login - 系统登录时启动 + Start Maximized + - Minimize to tray - 减少到最小 + Font Size + Close to tray 窗口最小化 - MESSAGES - 消息 - - - SEND MESSAGE - 发送消息 + Language + 语言 - Import GUI key - 导入 GUI KEY + Currency + 货币 - DEPOSITS - 存款 + Chinese + 中文 - BANKING - 银行业务 + English + 英文 - Reset wallet - 重置钱包 + Russian + 俄语 - Import spend/view key - 导入支出/查看 KEY + Turkish + 土耳其 - Import mnemonic seed - 导入助记词种子 + Import Wallet + 汇入钱包 - Connection settings - 连接设置 + IMPORT TRACKING WALLET + 导入仅查看钱包 - Optimize wallet - 优化钱包 + IMPORT PRIVATE KEYS + 导入密钥 - Import view wallet - 导入查看钱包 + Minimize to tray + 减少到最小 - Frame - Frame + Wallet Operations + - Send To: - 发送到: + New/Existing + - ... + NEW WALLET - Message - 消息 + Import + 导入 - Block height - 区块高度 + IMPORT SEED + 导入种子 - Amount - 金额 + New or Existing Wallet + 新的或现有的钱包 - Transaction hash - 交易哈希 + CREATE NEW WALLET + 创建新钱包 - Message size (bytes) - 消息大小(字节) + OPEN EXISTING WALLET + 打开已存在钱包 - Reply - 回复 + ENCRYPT WALLET + 加密钱包 - Save to file - 保存文件 + Backup + 后备 - << - + BACKUP KEYS + KEYS - >> - + BACKUP WALLET FILE + 钱包文件 - Ok - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Poppins'; font-size:16px; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost.</span></p></body></html> + 在发送之前,请确保地址和付款ID(如果包括)正确。 发送到错误地址的资金将会丢失。 - Frame - Frame + Payment ID (Optional) - Required at some Exchanges + 付款ID(可选)-在某些交易所需要 - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - + Message (Optional) + 消息 - MESSAGES - + Save to Address Book + 保存到地址簿 - NEW MESSAGE - 新消息 + Amount + 金额 - BACK - 返回 + Address + 地址 - Frame - Frame + SEND + 发送 - MINING - 采矿 + CANCEL + 取消 - Select a mining pool - 选择挖掘池 + CLEAR + 重启 - Number of CPU cores - CPU核数 + Do not include message in blockchain + 不要在区块链中包含消息 - ADD MINING POOL - + Set self destruct time + 设置自毁时间 - Mining status : - 采矿状态: + COPY PAYMENT ID + - Stopped - 停止 + NEW CONTACT + - START MINING - 开始挖掘 + HELP DESK + - PAUSE MINING - 暂停挖掘 + DONATION + - BACK - 返回 + Quarter + - New address - 新地址 + Half + - NEW ADDRESS BOOK ENTRY - 新建通讯簿条目 + All + - LABEL - 标签 + Send + - ADDRESS - 地址 + Cancel + - PAYMENT ID - 付款ID + Clear All + - ADD - 添加 + <html><head/><body><p><span style=" font-weight:600;">ABOUT CONCEAL</span></p><p>Conceal.Network is a decentralized blockchain bank, with deposits and investments paying interest rates, without involvement of financial institutions, powered by 100% open source code. Conceal.Network enables untraceable and anonymous messaging, and a secure way to transfer funds. Using a distributed public ledger, the sender and receiver are kept anonymous.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">https://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> + - CANCEL - 取消 + ABOUT CONCEAL DESKTOP + - New remote node - 新建远程节点 + This software is using Qt + - Host - 主机 + This software is using QtCharts + - OK - + LICENSE AND SOURCE CODE + - CLOSE - 关闭 + This is your transaction history. It is a list of all incoming and outgoing transactions, deposits, and optimizations. If there are any discrepancies, please do a rescan of your wallet to purge any failed transactions from the list. Double-click individual entries to get a more detailed view. + - Add Remote Node - 增加远程节点 + Clear + - Enter password - 输入密码 + Note: Maximum message size is 260 characters. + 注意:最大邮件大小为260个字符。 - New Password - 新密码 + Refresh data + - Confirm Password - 确认密码 + BUY/MARKETS + - Password not confirmed - 密码未确认 + TOOLS + - SAVE - 保存 + sm + - CLOSE - 关闭 + Wiki + - New pool - 新池 + COMMUNITY + - Host: - 主机 + Withdraw Deposit + - Port: - 端口: + NEW DEPOSIT + 新存款 - CANCEL - 取消 + How long should your deposit last? + 您的存款应持续多长时间? - OK - + French + - Connection Settings - 连接设置 + Auto refresh data + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:15px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:15px;">By default your wallet will connect using the built-in node, helping with decentralisation. You can also use a remote node if you dont want to download the entire blockchain.Please note that some remote nodes will have fees when sending transactions.</span></p></body></html> - + Status + 状态 - Custom Remote Node - 自定义远程节点 + How much do you want to deposit? + 您要存多少钱? - Built-in Node - 内置节点 + Deposit Details + 存款明细 - CLOSE - 关闭 + interestLabel + 利息标签 - SAVE - 保存 + Interest rate: + 利息: - Automatic Remote Node - 自动远程节点 + Rewards you will earn: + 奖励您将获得: - Frame - Frame + Fees for this deposit: + 押金的费用: - Banking - 银行业务 + Length on the blockchain: + 区块链上的长度: - Messages - 消息 + MAKE DEPOSIT + 新存款 - About - 关于 + DEPOSIT HISTORY + 历史数据 - Transactions - 交易 + WITHDRAW + 取出 - Settings - 设置 + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Poppins'; font-size:13px; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8.25pt;">A complete history of all your deposits. Double-click an individual deposit for a more detailed view.</span></p></body></html> + 您所有存款的完整历史记录。 双击单个存款以获得更详细的视图。 + + + CONCEAL.NETWORK + 我的CONCEAL钱包 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:12px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; line-height:160%;"><span style=" font-size:13px;">statusBox</span></p></body></html> - +</style></head><body style=" font-family:'Poppins'; font-size:13px; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; line-height:160%;"><span style=" font-size:13px;">SYNCHRONIZING</span></p></body></html> + 同步化 - Wallet - 钱包 + YOUR CONTACT LIST + 您的联系方式 - First - 第一 + COPY ADDRESS + 复制地址 - Second - 第二 + COPY PAYMENTID + 复制 PAYMENT ID - Third - 第三 + PAY TO + 付给 - Fourth - 第四 + EDIT CONTACT + 编辑 - Fifth - 第五 + DELETE CONTACT + 删除 + + + SEND MESSAGE + 发送消息 + + + OPEN WALLET + 打开钱包 - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + HELP + 帮助 + + + Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost. - Sixth - 第六 + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) + - RECENT TRANSACTIONS - 最近交易 + EXPORT CSV + - Pending - 等待 + Message + 消息 - Available - 可用 + PRICE + - FUNDS - 基金 + 24 HOUR CHANGE + - DEPOSITS - 存款 + Pending + - Locked - 锁住 + GitHub + - Withdrawable - 可取出 + Market Place + - CONCEAL.NETWORK - 我的CONCEAL钱包 + TradeOgre + - currentWallet - 当前钱包 + A complete history of all your deposits. Double-click an individual deposit for a more detailed view. + - SEND - 发送 + Make Deposit + - BANKING - 银行业务 + This wallet is locked. Please click below to unlock your wallet. + 该钱包已被锁定。 请点击下面解锁您的钱包。 - MESSAGE - 消息 + UNLOCK WALLET + 解锁钱包 - INVESTMENTS - 投资 + STATUS + 状态 - CCX + Current Wallet - VOLUME - 体积 + Portfolio (CCX) + - MARKETCAP - 市值 + CCX TOTAL + 总余额 - BTC - BTC + HEIGHT + 高度 - WALLET ADDRESS - 钱包地址 + A list of incoming and outgoing messages for this wallet. + - ccx7VYYGA65jUCfVaeiaHeSN5cmZZcLbhMm1FbpLYpnPVuDKKpH3n3hMiosUCs7LiT1WLrGx8nfZkeETox622EGt4ky2GihVZ8 + Portfolio (USD) - MARKET INFORMATION - 市场信息 + Current Height + Enter password 输入密码 + + Type your password... + + CONTINUE 继续 @@ -1015,8 +1311,12 @@ p, li { white-space: pre-wrap; } 错误密码 - Please Enter Your Password For Wallet - 请输入您的钱包密码 + CANCEL + 取消 + + + Please Enter Your Password + 输入密码 currentWallet @@ -1038,6 +1338,11 @@ p, li { white-space: pre-wrap; } Fail 失败 + + %1 Wallet failed to start. +Check that port %2 is not already in use. + + STARTING WALLET 正在加载钱包 @@ -1052,13 +1357,26 @@ Would you like to go to the download page? 钱包有更新。 您要进入下载页面吗? + + Seed confirmation error + + + + Conceal Desktop Update + + + + There is an update available. +Would you like to go to the download page? + + Frame Frame - WALLET SEED AND KEYS - 钱包种子与密钥 + WALLET KEY BACKUP + 钱包备份 YOUR 25 WORD MNEMONIC SEED @@ -1068,9 +1386,9 @@ Would you like to go to the download page? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:11pt;">Your wallet is an older format that does not support mnemonic seeds. Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet.</span></p></body></html> - +</style></head><body style=" font-family:'Poppins'; font-size:16px; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">Your wallet is an older format that does not support mnemonic seeds. Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet.</span></p></body></html> + 您的钱包是较旧的格式,不支持助记符种子。 请生成一个新钱包,以获取25个单词的助记符种子,并将您现有的资金转移到您的新钱包中。 COPY @@ -1089,23 +1407,15 @@ p, li { white-space: pre-wrap; } - PRIVATE VIEW KEY - 查看私钥 + private spend key goes here + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier'; font-size:10pt;">private spend key goes here</span></p></body></html> - + PRIVATE VIEW KEY + 查看私钥 - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier'; font-size:10pt;">private view key goes here</span></p></body></html> + private view key goes here @@ -1116,6 +1426,18 @@ p, li { white-space: pre-wrap; } ■ Keep your seed and password safe 确保您的种子和密码安全 + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'monospace'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tracking key goes here</p></body></html> + + + + Wallet Key Backup + + ■ Make a backup of your wallet file 备份钱包文件 @@ -1137,195 +1459,40 @@ p, li { white-space: pre-wrap; } 查看种子 - private keys + PRIVATE KEYS 私钥 - gui key - KEY - - - advanced users: - 高级用户 - - - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - - - - YOUR GUI KEY - 你的GUI KEY - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:17px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:11pt;">gui key goes here</span></p></body></html> - - - - Frame - Frame - - - SEND FUNDS - 发送资金 - - - BACK - 返回 - - - PAYMENT ID (OPTIONAL) - 付款ID(可选) - - - ADDRESS - 地址 - - - LABEL - 标签 - - - 0.000000 - - - - AMOUNT - 金额 - - - AVAILABLE BALANCE - 可用余额 - - - CLEAR ALL - 全部清除 - - - FEE - 费用 - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:9pt;">Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost.</span></p></body></html> - 在发送之前,请确保地址和付款ID(如果包括)正确。发送到错误地址的资金将会丢失。 - - - ADDRESS BOOK - 地址簿 - - - NODE FEE - 节点费用 - - - CRYPTO MESSAGE (OPTIONAL) - 加密消息(可选) - - - You can send an optional message along with your transfer. There is a 0.000010 CCX fee per character. - 您可以在传输时发送可选消息。每字符收费0.000010 ccx。 - - - Some exchanges and other services require that a Payment ID is included when sending funds. - 一些交易所和其他服务要求在发送资金时包含付款ID。 - - - Include a label if you want to save the recepient in your Address Book - 如果要在通讯簿中保存收件人,请包含标签 - - - Please enter the receivers address - 请输入接收人地址 - - - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - - - - Frame - Frame - - - Add "Reply To" - 添加“回复” + TRACKING KEY + 查看金钥 - Do not include message in blockchain - 不要在区块链中包含消息 - - - Set self destruct time - 设置自毁时间 - - - ttl - TTL - - - FEE - 费用 - - - SEND MESSAGE - 发送消息 - - - BACK - 返回 - - - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - - - - Please enter the receivers address - 请输入接收人地址 - - - ADDRESS - 地址 - - - Enter your encrypted message - 输入您的加密消息 - - - MESSAGE - 消息 + Advanced Users: + 高级用户: - ADDRESS BOOK - 地址簿 + Your wallet is an older format that does not support mnemonic seeds. +Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet. + - NODE FEE - 节点费用 + YOUR TRACKING KEY + 查看金钥 Walllet Address :: QR Code 钱包地址 :: 二维码 - Transaction details - 交易详细信息 + Wallet Address QR Code + - Transaction Details + Transaction details 交易详细信息 - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + Transaction Details @@ -1341,25 +1508,9 @@ p, li { white-space: pre-wrap; } 文本标签 - Transaction History - 交易历史 - - - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + Transaction - - TRANSACTION HISTORY - 交易历史 - - - EXPORT TO CSV - 导出为CSV - - - BACK - 返回 - Frame Frame @@ -1372,10 +1523,6 @@ p, li { white-space: pre-wrap; } Enter a label for this address to add it to your address book 输入此地址的标签,将其添加到地址簿中 - - ... - - Label 标签 @@ -1396,17 +1543,13 @@ p, li { white-space: pre-wrap; } Unable to check for update 无法检查更新 - - The Conceal Wallet - Conceal 钱包 - Invalid address 无效地址 - Empty label - 空标签 + Invalid payment ID + 付款ID无效 Label @@ -1420,26 +1563,6 @@ p, li { white-space: pre-wrap; } Payment ID 付款ID - - ENABLE - 打开 - - - DISABLE - 关掉 - - - Language settings saved - 语言设置已保存 - - - Please restart the wallet for the new settings to take effect. - 请重新启动钱包以使新设置生效。 - - - Connection settings saved - 连接设置已保存 - Password not confirmed 密码未确认 @@ -1468,6 +1591,10 @@ p, li { white-space: pre-wrap; } xternal port for p2p network protocol (if port forwarding used with NAT) P2P网络协议的外部端口(如果端口转发与NAT一起使用) + + External port for p2p network protocol (if port forwarding used with NAT) + + Allow local ip add to peer list, mostly in debug purposes 允许本地ip添加到节点列表,主要用于调试目的 @@ -1490,7 +1617,7 @@ p, li { white-space: pre-wrap; } Specify list of peers to connect to only. If this option is given the options add-priority-node and seed-node are ignored - 指定仅连接到的对等方列表。如果给定此选项,则忽略“添加优先级节点”和“种子节点”选项。 + 指定仅连接到的对等方列表。如果给定此选项,则忽略"添加优先级节点"和"种子节点"选项 Connect to a node to retrieve peer addresses, and disconnect @@ -1512,6 +1639,30 @@ p, li { white-space: pre-wrap; } Run application in minimized mode 以最小化模式运行应用程序 + + Conceal Desktop + + + + New Contact + + + + Edit Contact + + + + Invalid address + 无效地址 + + + Invalid payment ID + 付款ID无效 + + + Contact with such label already exists. + + Status 状态 @@ -1585,48 +1736,56 @@ p, li { white-space: pre-wrap; } 支出 - Weeks - + Wallet file + 钱包文件 + + + Wallets (*.wallet) + 钱包 (*.wallet) - Quarters - 住处 + Wallet file + 钱包文件 - %1 %2 - + Wallets (*.wallet) + 钱包 (*.wallet) - %1 + 0.001 (Node Fee) %2 - + Wallet file + 钱包文件 - New deposits only work after height 108,000 - 新存款仅在高度108,000之后有效 + Wallets (*.wallet) + 钱包 (*.wallet) - You don't have enough balance in your account! - 您的帐户余额不足! + Private Spend Key is not valid. The private spend key you entered is not valid. + - Deposit Confirmation - 存款确认 + Private View Key is not valid. The private view key you entered is not valid. + - Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? - 请注意,一旦资金锁定在存款中,在到期之前您将无法访问。是否确定要继续? + The wallet file already exists. Please change the wallet path and try again. + + + + Key is not valid. The private spend key you entered is not valid. + - New investments only work after height 108,000 - 新投资仅在高度108,000之后有效 + Key is not valid. The private view key you entered is not valid. + - Investment Confirmation - 投资确认 + Wallet file + 钱包文件 - Please note that once funds are locked in an investment, you will not have access to those funds until maturity. Are you sure you want to proceed? - 请注意,一旦资金锁定在投资中,在到期之前您将无法使用这些资金。是否确定要继续? + Wallets (*.wallet) + 钱包 (*.wallet) Wallet file @@ -1636,6 +1795,18 @@ p, li { white-space: pre-wrap; } Wallets (*.wallet) 钱包 (*.wallet) + + Invalid seed. Seed phrase is not 25 words! Please try again. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Invalid seed. Please check your seed and try again. + + Wallet file 钱包文件 @@ -1652,9 +1823,37 @@ p, li { white-space: pre-wrap; } Wallets (*.wallet) 钱包 (*.wallet) + + Tracking key is not valid. The tracking key you entered is not valid. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Key is not valid. The public spend key you entered is not valid. + + + + Key is not valid. The public view key you entered is not valid. + + + + Key is not valid. The private spend key you entered is not valid. + + + + Key is not valid. The private view key you entered is not valid. + + + + Conceal Desktop %1 + + About %1 Wallet - 大约1%钱包 + 大约%1钱包 Language was changed @@ -1676,6 +1875,14 @@ p, li { white-space: pre-wrap; } Open .wallet/.keys file 打开 .wallet/.keys 文件 + + Show + + + + Quit Conceal Desktop + + Wallet (*.wallet *.keys) 钱包 (*.wallet *.keys) @@ -1691,7 +1898,7 @@ p, li { white-space: pre-wrap; } Your wallet will be reset and restored from blockchain. Are you sure? - 您的钱包将从区块链中重置和还原。 + 您的钱包将被重置并从区块链中恢复。 你确定吗? @@ -1731,168 +1938,307 @@ Are you sure? 您输入的查看私钥无效。 - Conection settings saved - 连接设置已保存 + Save message + 保存消息 - Please restart the wallet for the new settings to take effect. - 请重新启动钱包以使新设置生效。 + File already exists + 文件已存在 + + + Warning! File already exists and will be overwritten, are you sure? + 警告!文件已存在并将被覆盖,是否确定? + + + File error + 文件错误 + + + Date + 日期 + + + Type + 类型 + + + Height + 高度 + + + Message + 消息 + + + Transaction Hash + 交易哈希 + + + Message Size + + + + Transaction hash + 交易哈希 + + + Amount + 金额 + + + Message size + 消息大小 + + + Out + 出来 + + + In + + + + Password not confirmed + 密码未确认 + + + &Pay to + 付给 + + + Copy &label + 复制标签 + + + Copy &address + 复制地址 + + + Copy Payment &ID + 复制付款ID + + + &Edit + 编辑 + + + &Delete + 删除 + + + Month(s) + + + + CLICK TO DISABLE + 点击禁用 + + + CLICK TO ENABLE + 点击启用 + + + Tracking Wallet + 查看钱包 + + + Wallet + 钱包 + + + Synchronization + 同步 + + + Failed to lookup Conceal ID + 搜索失败 + + + Could not check Conceal ID + + + + Invalid recipient address + 接收地址无效 + + + Invalid payment ID + 付款ID无效 + + + Transaction Confirmation + 交易确认 + + + Please note that there is no payment ID, are you sure you want to proceed? + 请注意,没有付款ID,是否确定要继续? + + + Insufficient funds. Please ensure that you have enough funds for the amount plus fees. + 不充足的资金。 请确保您有足够的资金支付金额和费用。 + + + Message too long. Please ensure that the message is less than 260 characters. + 讯息太长。 请确保该消息少于260个字符。 - Language settings saved - 语言设置已保存 + You don't have enough balance in your account! + 您的帐户余额不足! - Save message - 保存消息 + Deposit Confirmation + 存款确认 - File already exists - 文件已存在 + Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? + 请注意,一旦资金锁定在存款中,在到期之前您将无法访问。是否确定要继续? - Warning! File already exists and will be overwritten, are you sure? - 警告!文件已存在并将被覆盖,是否确定? + Auto Optimization + 自动优化 - File error - 文件错误 + Auto Optimization Disabled. + 自动优化已禁用。 - Date - 日期 + Auto Optimization Enabled. Your wallet will be optimized automatically every 15 minutes. + 自动优化已启用。 您的钱包将每15分钟自动优化一次。 - Type - 类型 + Data updated + - Height - 高度 + Market data from coingecko.com - Last updated: %1 + - Message - 消息 + Portfolio ( + - Transaction hash - 交易哈希 + Available Balance: + - Amount - 金额 + This is a tracking wallet. +This action is not available. + - Message size - 消息大小 + BANKING + 银行业务 - Out - 出来 + TRANSACTIONS + 交易 - In - + CONCEAL.NETWORK + 我的CONCEAL钱包 - Password not confirmed - 密码未确认 + ABOUT + 关于 - Node URL - 节点URL + WALLET SETTINGS + - SYNCHRONIZING - 同步 + INBOX + 收件箱 - About Conceal - + SEND FUNDS + 发送资金 - About QT - + NEW MESSAGE + 新消息 - Disclaimer + Address copied to clipboard - Links - 链接 + Synchronization is in progress. +This option is not available until your wallet is synchronized with the network. + - Import Seed - 导入种子 + SEND MESSAGE + 发送消息 - Import Secret Keys - 导入密钥 + ADDRESS BOOK + 地址簿 - Import GUI Key - 导入 GUI KEY + Warning: you have reached the maximum message size of 260 characters. + - Open Wallet - 打开钱包 + Auto optimization disabled + - Create Wallet - 创建钱包 + Auto optimization enabled. +Your wallet will be optimized automatically every 15 minutes. + - Backup Wallet - 备份钱包 + Language and Currency settings saved + 语言和货币设置已保存 - Import Wallet - 汇入钱包 + Please restart the wallet for the new settings to take effect. + 请重新启动钱包以使新设置生效。 - Close Wallet - 关闭钱包 + Connection settings saved + 连接设置已保存 - Encrypt Wallet - 加密钱包 + Invalid address + 无效地址 - Change Password - 修改密码 + Edit contact + 更改联系资料 - Close to Tray On + Payment ID copied to clipboard - Close to Tray Off - + Address Book + 地址簿 - Minimize to Tray On - + Incorrect password + 错误密码 - Minimize to Tray Off - + Wrong password. + 错误密码. - Wallet - 钱包 + Lock Wallet + 锁钱包 - Synchronization - 同步 + Would you like to lock your wallet? While your wallet is locked, it will continue to synchronize with the network. You will need to enter your wallet password to unlock it. + 您想锁好钱包吗? 当您的钱包被锁定时,它将继续与网络同步。 您需要输入您的钱包密码才能解锁。 - Pool URL - 池URL + Select CSV file + - GUI Key - GUI KEY + Tracking Key + 跟踪KEY Private Spend-Key @@ -1907,72 +2253,64 @@ Are you sure? 种子 - Failed to lookup Conceal ID - 搜索失败 - - - Invalid recipient address - 接收地址无效 - - - Invalid payment ID - 付款ID无效 + New Block + - Transaction Confirmation - 交易确认 + Deposit Unlock + - Please note that there is no payment ID, are you sure you want to proceed? - 请注意,没有付款ID,是否确定要继续? + Incoming TX + - Incorrect fee value - 错误的费用值 + Outgoing TX + - Incorrect fee - 错误的费用 + Optimization + 优化中 - Select CSV file - 选择CSV文件 + New Deposit + 新存款 - DATE + Date 日期 - TYPE + Type 类型 - ADDRESS + Address 地址 - AMOUNT + Amount 金额 - FEE + Fee 费用 - HEIGHT + Height 高度 - PAYMENT ID + Payment ID 付款ID - MESSAGE + Message 消息 - HASH - 哈希 + Transaction Hash + 交易哈希 unconfirmed @@ -1982,10 +2320,6 @@ Are you sure? confirmations 确认 - - %1 / %2 - - me (%1) 我(%1) @@ -1994,6 +2328,18 @@ Are you sure? (n/a) + + Unconfirmed + + + + Confirmed + + + + not found + + Importing keys 导入keys @@ -2006,6 +2352,50 @@ Are you sure? SENDING TRANSACTION 发送中 + + Opening wallet + 正在打开钱包 + + + Creating wallet + 正在创建钱包 + + + Sending transaction + 正在发送交易 + + + Optimizing wallet + 正在优化钱包 + + + Sending message + 正在发送消息 + + + Creating deposit + 正在创建存款 + + + Withdrawing deposit + 正在提取存款 + + + Ready + 准备就绪 + + + Synchronizing + 正在同步 + + + Synchronized + 已同步 + + + Warning + 警告 + Optimizing 优化中 @@ -2023,7 +2413,7 @@ Are you sure? 取出中 - Ready + READY 准备 @@ -2051,7 +2441,28 @@ Are you sure? 请重新启动钱包以使新设置生效。 - <span style='color: orange;'>%1</span><br />Height: %2<br />%4<br />%3 + Unable to create the wallet. + + + + Unable to create a new wallet at the path provided. +Please choose another location. + + + + New wallet file + 新钱包文件 + + + Wallets (*.wallet) + 钱包 (*.wallet) + + + You must confirm that you have safely stored the mnemonic seed and understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + + + The words entered does not match the seed. Please try again. @@ -2070,6 +2481,70 @@ Are you sure? WELCOME TO THE CONCEAL WALLET 欢迎使用CONCEAL钱包 + + Create a new wallet address along with a secret seed phrase + + + + Already have a wallet? open the wallet and access your assets + + + + Import an existing wallet with the secret seed phrase and access your CCX + + + + Advanced users can import using other keys + + + + Create a new wallet + + + + Wallet Path + 钱包路径 + + + Where would you like to save your wallet? + + + + Choose a path where you would like to save your wallet. + + + + BACK + 返回 + + + Mnemonic seed + + + + Please save the following mnemonic seed safely, it is used to recover your wallet (or import it on another machine). + + + + Don't lose your seed or you might lose your wallet (and funds) forever. + + + + Copy seed + + + + Mnemonic seed confirmation + + + + Enter your seed to confirm you have saved it. + + + + I have safely stored the mnemonic seed and I understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + ■ Conceal is a decentralized blockchain bank. Conceal是一个分散的区块链银行. @@ -2086,16 +2561,16 @@ Are you sure? ■ You control the private keys to your funds. 只有你控制着你资金的私钥。 - - The Conceal Wallet - Conceal 钱包 - NEXT 下一步 - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + ■ Conceal Desktop is a free, open-source interface. + + + + How does Conceal Desktop work? @@ -2106,6 +2581,10 @@ Are you sure? a seed, and a wallet address. 种子和钱包地址 + + TextLabel + 文本标签 + ■ If you send your public address to someone then they can send you CCX. 如果您将公开的地址发送给别人,他们可以向您发送CCX。 @@ -2162,6 +2641,10 @@ Are you sure? Getting Started 开始使用 + + WELCOME TO CONCEAL DESKTOP + + CREATE NEW WALLET 创建新钱包 @@ -2226,10 +2709,6 @@ Are you sure? Private View Key 查看私钥 - - ... - - CANCEL 取消 @@ -2254,14 +2733,6 @@ Are you sure? Optimize Wallet 优化钱包 - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:15px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:15px;">This process will optimize your wallet for large transactions. The optimization will take approximately 22 minutes. Please note that you will not be able to spend any of your funds until the optimization process is complete. In some cases, the wallet might need optimization more than once.</span></p></body></html> - - Optimization recommended for this wallet 建议对此钱包进行优化 diff --git a/src/languages/cn.ts b/src/languages/cn.ts index df2aabf9..c847b013 100644 --- a/src/languages/cn.ts +++ b/src/languages/cn.ts @@ -819,7 +819,7 @@ Please wait... - + NEW MESSAGE 新消息 @@ -828,22 +828,22 @@ Please wait... 联系我们 - + Discord - + Telegram - + Twitter - + Medium @@ -900,7 +900,7 @@ p, li { white-space: pre-wrap; } 这是您的交易记录。 它是所有进出交易,存款和优化的列表。 如果有任何不符之处,请重新扫描您的钱包以清除列表中所有失败的交易。 双击单个整体以获得更详细的视图。 - + MESSAGE OVERVIEW 消息概述 @@ -913,97 +913,102 @@ p, li { white-space: pre-wrap; } 此钱包的传入和传出消息的列表。 - + Connection 连接设置 - + Custom Remote Node 自定义远程节点 - + Built-in Node 内置节点 - + Automatic Remote Node 自动远程节点 - + Set connection type 连接设置 - - + + SAVE 保存 - + Optimization 优化中 - + Auto optimization 自动优化 - + Website - + + Web Wallet + + + + Click to Copy - + Settings - + Show QR Code - + Lock Wallet 锁钱包 - + Large transactions 大型交易 - + OPTIMIZE 优化 - + START - + Rescan wallet 重置钱包 - - - - - + + + + + ENABLE 打开 @@ -1016,62 +1021,62 @@ p, li { white-space: pre-wrap; } 重置钱包 - + (Optimization not required) (不需要优化) - + Font - + Preferences 优先 - + Start Maximized - + Font Size - + Close to tray 窗口最小化 - + Language 语言 - + Currency 货币 - + Chinese 中文 - + English 英文 - + Russian 俄语 - + Turkish 土耳其 @@ -1080,42 +1085,42 @@ p, li { white-space: pre-wrap; } 汇入钱包 - + IMPORT TRACKING WALLET 导入仅查看钱包 - + IMPORT PRIVATE KEYS 导入密钥 - + Minimize to tray 减少到最小 - + Wallet Operations - + New/Existing - + NEW WALLET - + Import 导入 - + IMPORT SEED 导入种子 @@ -1132,22 +1137,22 @@ p, li { white-space: pre-wrap; } 打开已存在钱包 - + ENCRYPT WALLET 加密钱包 - + Backup 后备 - + BACKUP KEYS KEYS - + BACKUP WALLET FILE 钱包文件 @@ -1306,65 +1311,75 @@ p, li { white-space: pre-wrap; } - - - - - - - - - - sm + + BUY/MARKETS + + + + + TOOLS - - BitMart + + + + + + + + + + sm - + Wiki - + COMMUNITY - + Withdraw Deposit - + NEW DEPOSIT 新存款 - + How long should your deposit last? 您的存款应持续多长时间? - + + French + + + + Auto refresh data - + Status 状态 - + How much do you want to deposit? 您要存多少钱? - + Deposit Details 存款明细 @@ -1373,22 +1388,22 @@ p, li { white-space: pre-wrap; } 利息标签 - + Interest rate: 利息: - + Rewards you will earn: 奖励您将获得: - + Fees for this deposit: 押金的费用: - + Length on the blockchain: 区块链上的长度: @@ -1397,7 +1412,7 @@ p, li { white-space: pre-wrap; } 新存款 - + DEPOSIT HISTORY 历史数据 @@ -1414,7 +1429,7 @@ p, li { white-space: pre-wrap; } 您所有存款的完整历史记录。 双击单个存款以获得更详细的视图。 - + CONCEAL.NETWORK 我的CONCEAL钱包 @@ -1462,7 +1477,7 @@ p, li { white-space: pre-wrap; } - + OPEN WALLET 打开钱包 @@ -1506,42 +1521,37 @@ p, li { white-space: pre-wrap; } - + GitHub - + Market Place - + TradeOgre - - Medium - - - - + A complete history of all your deposits. Double-click an individual deposit for a more detailed view. - + Make Deposit - + This wallet is locked. Please click below to unlock your wallet. 该钱包已被锁定。 请点击下面解锁您的钱包。 - + UNLOCK WALLET 解锁钱包 @@ -1550,12 +1560,12 @@ p, li { white-space: pre-wrap; } 状态 - + Current Wallet - + Portfolio (CCX) @@ -1568,17 +1578,17 @@ p, li { white-space: pre-wrap; } 高度 - + A list of incoming and outgoing messages for this wallet. - + Portfolio (USD) - + Current Height @@ -1623,15 +1633,15 @@ p, li { white-space: pre-wrap; } QObject - + blocks 区块 + - Error 错误 @@ -1653,7 +1663,7 @@ Check that port %2 is not already in use. - + STARTING WALLET 正在加载钱包 @@ -1673,12 +1683,12 @@ Would you like to go to the download page? - + Conceal Desktop Update - + There is an update available. Would you like to go to the download page? @@ -1899,7 +1909,7 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans Updater - + Error: %1 错误:%1 @@ -1922,17 +1932,17 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::AddressBookModel - + Label 标签 - + Address 地址 - + Payment ID 付款ID @@ -1948,28 +1958,28 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::CommandLineParser - + Used to deploy test nets. Checkpoints and hardcoded seeds are ignored, network id is changed. Use it with –data-dir flag. The wallet must be launched with –testnet flag 用于部署测试网络。检查点和硬编码种子被忽略,网络ID被更改。与–data dir标志一起使用。钱包必须以–testnet标志启动 - + Interface for p2p network protocol P2P网络协议接口 - + ip IP - + Port for p2p network protocol P2P网络协议端口 - - + + port 端口 @@ -1978,69 +1988,69 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans P2P网络协议的外部端口(如果端口转发与NAT一起使用) - + External port for p2p network protocol (if port forwarding used with NAT) - + Allow local ip add to peer list, mostly in debug purposes 允许本地ip添加到节点列表,主要用于调试目的 - + Manually add peer to local peerlist 手动添加节点到本地节点列表 - + peer 同等 - + Specify list of peers to connect to and attempt to keep the connection open 指定要连接的对等方列表并尝试保持连接打开 - - + + node 节点 - + Specify list of peers to connect to only. If this option is given the options add-priority-node and seed-node are ignored - 指定仅连接到的对等方列表。如果给定此选项,则忽略"添加优先级节点"和"种子节点"选项 + 指定仅连接到的对等方列表。如果给定此选项,则忽略"添加优先级节点"和"种子节点"选项 - + Connect to a node to retrieve peer addresses, and disconnect 连接到节点以检索目标地址,然后断开连接 - + Do not announce yourself as peerlist candidate 不要宣布你自己是节点列表候选人 - + Specify data directory 特定目录数据 - + directory 目录 - + Run application in minimized mode 以最小化模式运行应用程序 - + Conceal Desktop @@ -2076,92 +2086,92 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::DepositModel - + Status 状态 - + Amount 金额 - + Interest 利息 - + Sum 总和 - + Rate 比率 - + Term 期限 - + Unlock height 解锁高度 - + Unlock time 解锁时间 - + Creating transaction 正在创建事务 - + Creating height 正在创建高度 - + Creating time 正在创建时间 - + Spending transaction 支出交易 - + Spending height 支出高度 - + Spending time 支出时间 - + Type 类型 - + Locked 锁住 - + Unlocked 解锁 - + Spent 支出 @@ -2348,54 +2358,54 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans 新钱包文件 - + Wallets (*.wallet) 钱包 (*.wallet) - + Open .wallet/.keys file 打开 .wallet/.keys 文件 - + Show - + Quit Conceal Desktop - + Wallet (*.wallet *.keys) 钱包 (*.wallet *.keys) - + Backup wallet to... 将钱包备份到… - + Warning 警告 - + Your wallet will be reset and restored from blockchain. Are you sure? 您的钱包将被重置并从区块链中恢复。 你确定吗? - + Wallet error 钱包错误 - + Wallet 钱包 @@ -2454,32 +2464,32 @@ Are you sure? WalletGui::MessagesModel - + Date 日期 - + Type 类型 - + Height 高度 - + Message 消息 - + Transaction Hash 交易哈希 - + Message Size @@ -2488,7 +2498,7 @@ Are you sure? 交易哈希 - + Amount 金额 @@ -2497,12 +2507,12 @@ Are you sure? 消息大小 - + Out 出来 - + In @@ -2547,30 +2557,30 @@ Are you sure? - - - - - - - - - - + + + + + + + + + + CLICK TO DISABLE 点击禁用 - - - - - - - - - - + + + + + + + + + + CLICK TO ENABLE 点击启用 @@ -2587,24 +2597,24 @@ Are you sure? 同步 - - + + Failed to lookup Conceal ID 搜索失败 - - + + Could not check Conceal ID - + Invalid recipient address 接收地址无效 - + Invalid payment ID 付款ID无效 @@ -2617,27 +2627,27 @@ Are you sure? 请注意,没有付款ID,是否确定要继续? - + Insufficient funds. Please ensure that you have enough funds for the amount plus fees. 不充足的资金。 请确保您有足够的资金支付金额和费用。 - + Message too long. Please ensure that the message is less than 260 characters. 讯息太长。 请确保该消息少于260个字符。 - + You don't have enough balance in your account! 您的帐户余额不足! - + Deposit Confirmation 存款确认 - + Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? 请注意,一旦资金锁定在存款中,在到期之前您将无法访问。是否确定要继续? @@ -2654,72 +2664,72 @@ Are you sure? 自动优化已启用。 您的钱包将每15分钟自动优化一次。 - + Data updated - + Market data from coingecko.com - Last updated: %1 - + Portfolio ( - + Available Balance: - - - - - - - - - + + + + + + + + + This is a tracking wallet. This action is not available. - + BANKING 银行业务 - + TRANSACTIONS 交易 - + CONCEAL.NETWORK 我的CONCEAL钱包 - + ABOUT 关于 - + WALLET SETTINGS - + INBOX 收件箱 - - + + SEND FUNDS 发送资金 @@ -2728,57 +2738,57 @@ This action is not available. 新消息 - - + + Address copied to clipboard - + Synchronization is in progress. This option is not available until your wallet is synchronized with the network. - - + + SEND MESSAGE 发送消息 - + ADDRESS BOOK 地址簿 - + Warning: you have reached the maximum message size of 260 characters. - + Auto optimization disabled - + Auto optimization enabled. Your wallet will be optimized automatically every 15 minutes. - + Language and Currency settings saved 语言和货币设置已保存 - - + + Please restart the wallet for the new settings to take effect. 请重新启动钱包以使新设置生效。 - + Connection settings saved 连接设置已保存 @@ -2791,7 +2801,7 @@ Your wallet will be optimized automatically every 15 minutes. 更改联系资料 - + Payment ID copied to clipboard @@ -2808,17 +2818,17 @@ Your wallet will be optimized automatically every 15 minutes. 错误密码. - + Lock Wallet 锁钱包 - + Would you like to lock your wallet? While your wallet is locked, it will continue to synchronize with the network. You will need to enter your wallet password to unlock it. 您想锁好钱包吗? 当您的钱包被锁定时,它将继续与网络同步。 您需要输入您的钱包密码才能解锁。 - + Select CSV file @@ -2850,22 +2860,27 @@ Your wallet will be optimized automatically every 15 minutes. - + + Deposit Unlock + + + + Incoming TX - + Outgoing TX - + Optimization 优化中 - + New Deposit 新存款 @@ -2873,70 +2888,85 @@ Your wallet will be optimized automatically every 15 minutes. WalletGui::TransactionsModel - + Date 日期 - + Type 类型 - + Address 地址 - + Amount 金额 - + Fee 费用 - + Height 高度 - + Payment ID 付款ID - + Message 消息 - + Transaction Hash 交易哈希 - + unconfirmed 未确认 - + confirmations 确认 - + me (%1) 我(%1) - + (n/a) + + + Unconfirmed + + + + + Confirmed + + + + + not found + + WalletGui::WalletAdapter @@ -3036,12 +3066,12 @@ Your wallet will be optimized automatically every 15 minutes. 同步 - + Unencrypted 未加密 - + Encrypted 加密 @@ -3054,7 +3084,7 @@ Your wallet will be optimized automatically every 15 minutes. 警告 - + There was a problem, please restart your wallet. 请重新启动钱包以使新设置生效。 diff --git a/src/languages/en.ts b/src/languages/en.ts index c5880bbd..f227cf57 100644 --- a/src/languages/en.ts +++ b/src/languages/en.ts @@ -786,20 +786,25 @@ Please wait... - + Turkish - + Language - + Russian + + + French + + COPY PAYMENT ID diff --git a/src/languages/fr.qm b/src/languages/fr.qm new file mode 100644 index 0000000000000000000000000000000000000000..c16e2291846a6352454f721eb956f512bc8a7e22 GIT binary patch literal 41631 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 + + + Select address + Sélectionner l'adresse + + + CHOOSE + CHOISIR + + + Change Password + Changer le mot de passe + + + Current Password + Mot de passe actuel + + + New Password + Nouveau mot de passe + + + Confirm New Password + Confirmer le nouveau mot de passe + + + Password not confirmed + Mot de passe non confirmé + + + SAVE + ENREGISTRER + + + CANCEL + ANNULER + + + Contact + Contact + + + Label + Étiquette + + + Address + Adresse + + + Payment ID + ID de paiement + + + OK + OK + + + CANCEL + ANNULER + + + Deposit Details + Détails du dépôt + + + CLOSE + FERMER + + + Saving data + Enregistrement des données + + + %1 wallet is saving data. +Please wait... + + + + %1 wallet is saving data. Please wait... + Le portefeuille %1 enregistre les données. Veuillez patienter... + + + Import GUI Key + Importer la clé GUI + + + GUI Key + Clé GUI + + + Wallet Path + Chemin du portefeuille + + + Where would you like to save your wallet? + Où souhaitez-vous sauvegarder votre portefeuille ? + + + IMPORT + IMPORTER + + + CANCEL + ANNULER + + + Recreate your wallet with the GUI key + Recréer votre portefeuille avec la clé GUI + + + Import Private Keys + Importer les clés privées + + + Recreate your wallet with the secret spend and view keys + Recréer votre portefeuille avec les clés secrètes de dépense et de visualisation + + + Private Spend Key + Clé privée de dépense + + + Private View Key + Clé privée de visualisation + + + Wallet Path + Chemin du portefeuille + + + Where would you like to save your wallet? + Où souhaitez-vous sauvegarder votre portefeuille ? + + + IMPORT + IMPORTER + + + CANCEL + ANNULER + + + Import Seed + Importer la phrase mnémonique + + + Import Mnemonic Seed + + + + Recreate your wallet with the 25 word mnemonic seed + Recréer votre portefeuille avec la phrase mnémonique de 25 mots + + + Mnemonic Seed + Phrase mnémonique + + + Wallet Path + Chemin du portefeuille + + + Where would you like to save your wallet? + Où souhaitez-vous sauvegarder votre portefeuille ? + + + IMPORT + IMPORTER + + + CANCEL + ANNULER + + + Import Tracking Key + Importer la clé de suivi + + + Import a tracking key of a wallet to see all its incoming transactions. It doesn't allow spending funds. + Importer une clé de suivi d'un portefeuille pour voir toutes ses transactions entrantes. Cela ne permet pas de dépenser les fonds. + + + Import a tracking wallet (view-only) + + + + Tracking Key + Clé de suivi + + + Wallet Path + Chemin du portefeuille + + + Where would you like to save your wallet? + Où souhaitez-vous sauvegarder votre portefeuille ? + + + IMPORT + IMPORTER + + + CANCEL + ANNULER + + + Enter password + Entrer le mot de passe + + + Type your password... + Tapez votre mot de passe... + + + CONTINUE + CONTINUER + + + Incorrect Password. Please try again. + + + + Welcome Back + + + + Click CONTINUE or press ENTER to unlock your wallet + + + + Conceal Desktop 6.2.1 + + + + HELP + + + + EXIT + + + + CHANGE + + + + Click CHANGE to choose (or create) another wallet + + + + Incorrect Password + Mot de passe incorrect + + + CANCEL + ANNULER + + + Please Enter Your Password + Veuillez entrer votre mot de passe + + + Conceal Desktop + + + + Message Details + + + + Block height + + + + Amount + Montant + + + Transaction hash + + + + Message size (bytes) + + + + SAVE TO FILE + + + + OK + OK + + + New Password + Nouveau mot de passe + + + Confirm Password + Confirmer le mot de passe + + + Password not confirmed + Mot de passe non confirmé + + + SAVE + ENREGISTRER + + + CLOSE + FERMER + + + Pending + En attente + + + Available + Disponible + + + YOUR CONTACT LIST + VOTRE LISTE DE CONTACTS + + + COPY ADDRESS + COPIER L'ADRESSE + + + PAY TO + PAYER À + + + EDIT CONTACT + MODIFIER LE CONTACT + + + DELETE CONTACT + SUPPRIMER LE CONTACT + + + DASHBOARD + TABLEAU DE BORD + + + TRANSACTIONS + TRANSACTIONS + + + INBOX + BOÎTE DE RÉCEPTION + + + ADDRESS BOOK + CARNET D'ADRESSES + + + SEND FUNDS + ENVOYER DES FONDS + + + SEND MESSAGE + ENVOYER UN MESSAGE + + + OPEN WALLET + OUVRIR LE PORTEFEUILLE + + + ABOUT + À PROPOS + + + Quarter + Quart + + + Half + Moitié + + + Address + Adresse + + + Payment ID (Optional) - Required at some Exchanges + ID de paiement (Optionnel) - Requis pour certains échanges + + + Message (Optional) + Message (Optionnel) + + + Amount + Montant + + + Save to Address Book + Sauvegarder dans le carnet d'adresses + + + ABOUT QT + À PROPOS DE QT + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) + Ce produit inclut des logiciels développés par le projet OpenSSL pour une utilisation dans la boîte à outils OpenSSL (http://www.openssl.org/) + + + EXPORT CSV + EXPORTER CSV + + + HISTORICAL DATA + DONNÉES HISTORIQUES + + + Message + Message + + + Set self destruct time + Définir le temps d'auto-destruction + + + Do not include message in blockchain + Ne pas inclure le message dans la blockchain + + + Note: Maximum message size is 260 characters. + Note : La taille maximale du message est de 260 caractères. + + + PRICE + PRIX + + + 24 HOUR CHANGE + VARIATION SUR 24H + + + Locked Deposits + Dépôts verrouillés + + + Withdrawable + Retirable + + + TOTAL BALANCE + SOLDE TOTAL + + + RECENT ACTIVITY + ACTIVITÉ RÉCENTE + + + Discord + Discord + + + Telegram + Telegram + + + Market Place + Place de marché + + + TradeOgre + TradeOgre + + + Twitter + Twitter + + + Medium + Medium + + + DEPOSIT HISTORY + HISTORIQUE DES DÉPÔTS + + + A complete history of all your deposits. Double-click an individual deposit for a more detailed view. + Un historique complet de tous vos dépôts. Double-cliquez sur un dépôt individuel pour une vue plus détaillée. + + + NEW DEPOSIT + NOUVEAU DÉPÔT + + + How much do you want to deposit? + Combien souhaitez-vous déposer ? + + + How long should your deposit last? + Quelle durée pour votre dépôt ? + + + Interest rate: + Taux d'intérêt : + + + Fees for this deposit: + Frais pour ce dépôt : + + + Deposit Details + Détails du dépôt + + + Length on the blockchain: + Durée sur la blockchain : + + + Rewards you will earn: + Récompenses que vous gagnerez : + + + This wallet is locked. Please click below to unlock your wallet. + Ce portefeuille est verrouillé. Veuillez cliquer ci-dessous pour déverrouiller votre portefeuille. + + + UNLOCK WALLET + DÉVERROUILLER LE PORTEFEUILLE + + + CONCEAL.NETWORK + CONCEAL.NETWORK + + + Connection + Connexion + + + SAVE + ENREGISTRER + + + Set connection type + Définir le type de connexion + + + Built-in Node + Nœud intégré + + + Custom Remote Node + Nœud distant personnalisé + + + Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost. + Veuillez vous assurer que l'adresse et l'ID de paiement (si inclus) sont corrects avant l'envoi. Les fonds envoyés à une mauvaise adresse seront perdus. + + + Automatic Remote Node + Nœud distant automatique + + + Optimization + Optimisation + + + Auto optimization + Optimisation automatique + + + ENABLE + ACTIVER + + + Rescan wallet + Scanner à nouveau le portefeuille + + + Large transactions + Transactions importantes + + + (Optimization not required) + (Optimisation non requise) + + + Preferences + Préférences + + + English + Anglais + + + Close to tray + Fermer dans la barre des tâches + + + Chinese + Chinois + + + Currency + Devise + + + Turkish + Turc + + + Language + Langue + + + Russian + Russe + + + French + Français + + + COPY PAYMENT ID + COPIER L'ID DE PAIEMENT + + + NEW MESSAGE + NOUVEAU MESSAGE + + + NEW CONTACT + NOUVEAU CONTACT + + + HELP DESK + ASSISTANCE + + + DONATION + DON + + + All + Tout + + + Send + Envoyer + + + Cancel + Annuler + + + Clear All + Tout effacer + + + <html><head/><body><p><span style=" font-weight:600;">ABOUT CONCEAL</span></p><p>Conceal.Network is a decentralized blockchain bank, with deposits and investments paying interest rates, without involvement of financial institutions, powered by 100% open source code. Conceal.Network enables untraceable and anonymous messaging, and a secure way to transfer funds. Using a distributed public ledger, the sender and receiver are kept anonymous.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">https://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> + <html><head/><body><p><span style=" font-weight:600;">À PROPOS DE CONCEAL</span></p><p>Conceal.Network est une banque blockchain décentralisée, avec des dépôts et des investissements rapportant des intérêts, sans l'intervention d'institutions financières, alimentée par un code 100% open source. Conceal.Network permet la messagerie intraçable et anonyme, et un moyen sécurisé de transférer des fonds. En utilisant un registre public distribué, l'expéditeur et le destinataire restent anonymes.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">https://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> + + + ABOUT CONCEAL DESKTOP + À PROPOS DE CONCEAL DESKTOP + + + This software is using Qt + Ce logiciel utilise Qt + + + This software is using QtCharts + Ce logiciel utilise QtCharts + + + LICENSE AND SOURCE CODE + LICENCE ET CODE SOURCE + + + This is your transaction history. It is a list of all incoming and outgoing transactions, deposits, and optimizations. If there are any discrepancies, please do a rescan of your wallet to purge any failed transactions from the list. Double-click individual entries to get a more detailed view. + Ceci est votre historique de transactions. C'est une liste de toutes les transactions entrantes et sortantes, des dépôts et des optimisations. S'il y a des divergences, veuillez effectuer une nouvelle analyse de votre portefeuille pour purger toute transaction échouée de la liste. Double-cliquez sur les entrées individuelles pour obtenir une vue plus détaillée. + + + Clear + Effacer + + + Refresh data + Actualiser les données + + + BUY/MARKETS + + + + TOOLS + + + + sm + sm + + + BitMart + BitMart + + + Wiki + Wiki + + + GitHub + GitHub + + + COMMUNITY + COMMUNAUTÉ + + + Website + Site web + + + Web Wallet + + + + Withdraw Deposit + Retirer le dépôt + + + Make Deposit + Faire un dépôt + + + Click to Copy + Cliquer pour copier + + + Settings + Paramètres + + + Show QR Code + Afficher le QR Code + + + Lock Wallet + Verrouiller le portefeuille + + + OPTIMIZE + OPTIMISER + + + START + DÉMARRER + + + Font + Police + + + Minimize to tray + Réduire dans la barre des tâches + + + Start Maximized + Démarrer maximisé + + + Font Size + Taille de la police + + + Auto refresh data + Actualisation automatique des données + + + Wallet Operations + Opérations du portefeuille + + + New/Existing + Nouveau/Existant + + + Status + État + + + NEW WALLET + NOUVEAU PORTEFEUILLE + + + ENCRYPT WALLET + CHIFFRER LE PORTEFEUILLE + + + Import + Importer + + + IMPORT PRIVATE KEYS + IMPORTER LES CLÉS PRIVÉES + + + IMPORT SEED + IMPORTER LA PHRASE MNÉMONIQUE + + + IMPORT TRACKING WALLET + IMPORTER LE PORTEFEUILLE DE SUIVI + + + Backup + Sauvegarde + + + BACKUP KEYS + SAUVEGARDE CLÉS + + + BACKUP WALLET FILE + + + + MESSAGE OVERVIEW + + + + Current Wallet + + + + Portfolio (CCX) + + + + A list of incoming and outgoing messages for this wallet. + Liste des messages entrants et sortants pour ce portefeuille. + + + Portfolio (USD) + + + + Current Height + + + + BANKING + BANQUE + + + VOLUME + VOLUME + + + MARKETCAP + CAPITALISATION + + + MARKET INFORMATION + INFORMATIONS DU MARCHÉ + + + Type your password... + + + + CONTINUE + + + + Incorrect Password + + + + CANCEL + ANNULER + + + Please Enter Your Password + + + + blocks + blocs + + + Error + Erreur + + + Help + Aide + + + Fail + Échec + + + %1 Wallet failed to start. +Check that port %2 is not already in use. + Le portefeuille %1 n'a pas pu démarrer. +Vérifiez que le port %2 n'est pas déjà utilisé. + + + STARTING WALLET + DÉMARRAGE DU PORTEFEUILLE + + + Seed confirmation error + Erreur de confirmation de la phrase mnémonique + + + Conceal Desktop Update + Mise à jour de Conceal Desktop + + + There is an update available. +Would you like to go to the download page? + Une mise à jour est disponible. +Voulez-vous aller à la page de téléchargement ? + + + YOUR 25 WORD MNEMONIC SEED + + + + COPY + + + + BACK + + + + private spend key goes here + + + + private view key goes here + + + + Advanced Users: + + + + PRIVATE KEYS + + + + TRACKING KEY + + + + Your wallet is an older format that does not support mnemonic seeds. +Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet. + + + + YOUR TRACKING KEY + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'monospace'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tracking key goes here</p></body></html> + + + + COPY SPEND KEY + + + + PRIVATE SPEND KEY + + + + PRIVATE VIEW KEY + + + + COPY VIEW KEY + + + + ■ Keep your seed and password safe + + + + Wallet Key Backup + + + + WALLET KEY BACKUP + + + + ■ Make a backup of your wallet file + + + + ■ Be aware of phishing websites and programs + + + + ■ Store a copy of your seed in a safe place + + + + We care about your safety: Please read the following + + + + SHOW SEED + + + + Wallet Address QR Code + + + + Transaction Details + + + + CLOSE + + + + Transaction + + + + Error: %1 + + + + Label + + + + Address + + + + Payment ID + + + + Password not confirmed + + + + Used to deploy test nets. Checkpoints and hardcoded seeds are ignored, network id is changed. Use it with –data-dir flag. The wallet must be launched with –testnet flag + + + + Interface for p2p network protocol + + + + ip + + + + Port for p2p network protocol + + + + port + + + + External port for p2p network protocol (if port forwarding used with NAT) + + + + Allow local ip add to peer list, mostly in debug purposes + + + + Manually add peer to local peerlist + + + + peer + + + + Specify list of peers to connect to and attempt to keep the connection open + + + + node + + + + Specify list of peers to connect to only. If this option is given the options add-priority-node and seed-node are ignored + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + Do not announce yourself as peerlist candidate + + + + Specify data directory + + + + directory + + + + Run application in minimized mode + + + + Conceal Desktop + + + + New Contact + + + + Edit Contact + + + + Invalid address + + + + Invalid payment ID + + + + Contact with such label already exists. + + + + Status + + + + Amount + + + + Interest + + + + Sum + + + + Rate + + + + Term + + + + Unlock height + + + + Unlock time + + + + Creating transaction + + + + Creating height + + + + Creating time + + + + Spending transaction + + + + Spending height + + + + Spending time + + + + Type + + + + Locked + + + + Unlocked + + + + Spent + + + + Wallet file + + + + Wallets (*.wallet) + + + + Wallet file + + + + Wallets (*.wallet) + + + + Private Spend Key is not valid. The private spend key you entered is not valid. + + + + Private View Key is not valid. The private view key you entered is not valid. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Key is not valid. The private spend key you entered is not valid. + + + + Key is not valid. The private view key you entered is not valid. + + + + Wallet file + + + + Wallets (*.wallet) + + + + Invalid seed. Seed phrase is not 25 words! Please try again. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Invalid seed. Please check your seed and try again. + + + + Wallet file + + + + Wallets (*.wallet) + + + + Tracking key is not valid. The tracking key you entered is not valid. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Key is not valid. The public spend key you entered is not valid. + + + + Key is not valid. The public view key you entered is not valid. + + + + Key is not valid. The private spend key you entered is not valid. + + + + Key is not valid. The private view key you entered is not valid. + + + + Conceal Desktop %1 + + + + Wallets (*.wallet) + + + + Open .wallet/.keys file + + + + Show + + + + Quit Conceal Desktop + + + + Wallet (*.wallet *.keys) + + + + Backup wallet to... + + + + Warning + + + + Your wallet will be reset and restored from blockchain. +Are you sure? + + + + Wallet error + + + + Wallet + + + + Save message + + + + File already exists + + + + Warning! File already exists and will be overwritten, are you sure? + + + + File error + + + + Date + + + + Type + + + + Height + + + + Message + + + + Transaction Hash + + + + Message Size + + + + Amount + + + + Out + + + + In + + + + Password not confirmed + + + + Month(s) + + + + CLICK TO DISABLE + + + + CLICK TO ENABLE + + + + Market data from coingecko.com - Last updated: %1 + + + + Portfolio ( + + + + Available Balance: + + + + Failed to lookup Conceal ID + + + + Could not check Conceal ID + + + + Invalid recipient address + + + + Invalid payment ID + + + + Insufficient funds. Please ensure that you have enough funds for the amount plus fees. + + + + Message too long. Please ensure that the message is less than 260 characters. + + + + You don't have enough balance in your account! + + + + Deposit Confirmation + + + + Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? + + + + This is a tracking wallet. +This action is not available. + + + + Data updated + + + + BANKING + + + + TRANSACTIONS + + + + CONCEAL.NETWORK + + + + ABOUT + + + + WALLET SETTINGS + + + + INBOX + + + + SEND FUNDS + + + + Address copied to clipboard + + + + Synchronization is in progress. +This option is not available until your wallet is synchronized with the network. + + + + SEND MESSAGE + + + + ADDRESS BOOK + + + + Warning: you have reached the maximum message size of 260 characters. + + + + Auto optimization disabled + + + + Auto optimization enabled. +Your wallet will be optimized automatically every 15 minutes. + + + + Language and Currency settings saved + + + + Please restart the wallet for the new settings to take effect. + + + + Connection settings saved + + + + Payment ID copied to clipboard + + + + Lock Wallet + + + + Would you like to lock your wallet? While your wallet is locked, it will continue to synchronize with the network. You will need to enter your wallet password to unlock it. + + + + Select CSV file + + + + New Block + + + + Deposit Unlock + + + + Incoming TX + + + + Outgoing TX + + + + Optimization + + + + New Deposit + + + + Date + + + + Type + + + + Address + + + + Amount + + + + Fee + + + + Height + + + + Payment ID + + + + Message + + + + Transaction Hash + + + + unconfirmed + + + + confirmations + + + + me (%1) + + + + (n/a) + + + + Unconfirmed + + + + Confirmed + + + + not found + + + + Importing keys + + + + Saving data + + + + Opening wallet + + + + Creating wallet + + + + Sending transaction + + + + Optimizing wallet + + + + Sending message + + + + Creating deposit + + + + Withdrawing deposit + + + + Ready + + + + Synchronizing + + + + Synchronized + + + + Warning + + + + Unencrypted + + + + Encrypted + + + + There was a problem, please restart your wallet. + + + + Unable to create the wallet. + + + + Unable to create a new wallet at the path provided. +Please choose another location. + + + + New wallet file + + + + Wallets (*.wallet) + + + + You must confirm that you have safely stored the mnemonic seed and understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + + + The words entered does not match the seed. Please try again. + + + + Welcome + + + + Create a new wallet address along with a secret seed phrase + + + + Already have a wallet? open the wallet and access your assets + + + + Import an existing wallet with the secret seed phrase and access your CCX + + + + Advanced users can import using other keys + + + + Create a new wallet + + + + Wallet Path + + + + Where would you like to save your wallet? + + + + Choose a path where you would like to save your wallet. + + + + BACK + + + + Mnemonic seed + + + + Please save the following mnemonic seed safely, it is used to recover your wallet (or import it on another machine). + + + + Don't lose your seed or you might lose your wallet (and funds) forever. + + + + Copy seed + + + + Mnemonic seed confirmation + + + + Enter your seed to confirm you have saved it. + + + + I have safely stored the mnemonic seed and I understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + + + ■ Conceal is a decentralized blockchain bank. + + + + ■ The wallet allows access to all Conceal services. + + + + ■ You control the private keys to your funds. + + + + NEXT + + + + WELCOME TO CONCEAL DESKTOP + + + + ■ Conceal Desktop is a free, open-source interface. + + + + How does Conceal Desktop work? + + + + ■ When creating a wallet, you are creating a set of cryptographic keys + + + + a seed, and a wallet address. + + + + ■ If you send your public address to someone then they can send you CCX. + + + + ■ The developers of Conceal have no access to your password, your keys, + + + + ■ NEVER share your seed, keys, or wallet file with anyone. + + + + Doing so means they have complete control over your funds. + + + + or your seed. If you forget your password, or lose your seed, + + + + there is nothing we can do. Always keep a copy of your seed in a secure place. + + + + ■ You are responsible for your own security. + + + + ■ No one can recover or change your private keys or seed. + + + + ■ No one can recover your password. + + + + ■ No one can refund your transactions. + + + + only YOU are in control + + + + ■ No one can freeze your funds. + + + + Getting Started + + + + CREATE NEW WALLET + + + + OPEN EXISTING WALLET + + + + IMPORT PRIVATE KEYS + + + + IMPORT GUI KEY + + + + IMPORT SEED + + + diff --git a/src/languages/fr.ts b/src/languages/fr.ts new file mode 100644 index 00000000..3f95022a --- /dev/null +++ b/src/languages/fr.ts @@ -0,0 +1,2612 @@ + + + + + AddressBookDialog + + + Select address + Sélectionner l'adresse + + + + CHOOSE + CHOISIR + + + + ChangePasswordDialog + + + + Change Password + Changer le mot de passe + + + + Current Password + Mot de passe actuel + + + + New Password + Nouveau mot de passe + + + + Confirm New Password + Confirmer le nouveau mot de passe + + + + Password not confirmed + Mot de passe non confirmé + + + + SAVE + ENREGISTRER + + + + CANCEL + ANNULER + + + + ContactDialog + + + + Contact + Contact + + + + Label + Étiquette + + + + Address + Adresse + + + + Payment ID + ID de paiement + + + + OK + OK + + + + CANCEL + ANNULER + + + + DepositDetailsDialog + + + + Deposit Details + Détails du dépôt + + + + CLOSE + FERMER + + + + ExitWidget + + + Saving data + Enregistrement des données + + + + %1 wallet is saving data. +Please wait... + Sauvegarde en cours du Portefeuille %1. +Merci de patienter... + + + %1 wallet is saving data. Please wait... + Le portefeuille %1 enregistre les données. Veuillez patienter... + + + + ImportGUIKeyDialog + + + + Import GUI Key + Importer la clé GUI + + + + GUI Key + Clé GUI + + + + Wallet Path + Chemin du portefeuille + + + + Where would you like to save your wallet? + Où souhaitez-vous sauvegarder votre portefeuille ? + + + + IMPORT + IMPORTER + + + + CANCEL + ANNULER + + + + Recreate your wallet with the GUI key + Recréer votre portefeuille avec la clé GUI + + + + ImportSecretKeysDialog + + + + Import Private Keys + Importer les clés privées + + + + Recreate your wallet with the secret spend and view keys + Recréer votre portefeuille avec les clés secrètes de dépense et de visualisation + + + + Private Spend Key + Clé privée de dépense + + + + Private View Key + Clé privée de visualisation + + + + Wallet Path + Chemin du portefeuille + + + + Where would you like to save your wallet? + Où souhaitez-vous sauvegarder votre portefeuille ? + + + + IMPORT + IMPORTER + + + + CANCEL + ANNULER + + + + ImportSeedDialog + + Import Seed + Importer la phrase mnémonique + + + + + Import Mnemonic Seed + + + + + Recreate your wallet with the 25 word mnemonic seed + Recréer votre portefeuille avec la phrase mnémonique de 25 mots + + + + Mnemonic Seed + Phrase mnémonique + + + + Wallet Path + Chemin du portefeuille + + + + Where would you like to save your wallet? + Où souhaitez-vous sauvegarder votre portefeuille ? + + + + IMPORT + IMPORTER + + + + CANCEL + ANNULER + + + + ImportTrackingDialog + + + + Import Tracking Key + Importer la clé de suivi + + + Import a tracking key of a wallet to see all its incoming transactions. It doesn't allow spending funds. + Importer une clé de suivi d'un portefeuille pour voir toutes ses transactions entrantes. Cela ne permet pas de dépenser les fonds. + + + + Import a tracking wallet (view-only) + + + + + Tracking Key + Clé de suivi + + + + Wallet Path + Chemin du portefeuille + + + + Where would you like to save your wallet? + Où souhaitez-vous sauvegarder votre portefeuille ? + + + + IMPORT + IMPORTER + + + + CANCEL + ANNULER + + + + MainPasswordDialog + + + Enter password + Entrer le mot de passe + + + + Type your password... + Tapez votre mot de passe... + + + + CONTINUE + CONTINUER + + + + Incorrect Password. Please try again. + + + + + Welcome Back + + + + + Click CONTINUE or press ENTER to unlock your wallet + et clique CONTINUER ou presse ENTRER pour dévérouiller ton portefeuille + + + + Conceal Desktop 6.2.1 + + + + + HELP + AIDE + + + + EXIT + + + + + CHANGE + CHANGER + + + + Click CHANGE to choose (or create) another wallet + Clique CHANGER pour choisir (ou créer) un autre portefeuille + + + Incorrect Password + Mot de passe incorrect + + + CANCEL + ANNULER + + + Please Enter Your Password + Veuillez entrer votre mot de passe + + + + MainWindow + + + Conceal Desktop + + + + + MessageDetailsDialog + + + + Message Details + + + + + Block height + + + + + Amount + Montant + + + + Transaction hash + + + + + Message size (bytes) + + + + + SAVE TO FILE + + + + + OK + OK + + + + NewPasswordDialog + + + + + New Password + Nouveau mot de passe + + + + Confirm Password + Confirmer le mot de passe + + + + Password not confirmed + Mot de passe non confirmé + + + + SAVE + ENREGISTRER + + + + CLOSE + FERMER + + + + OverviewFrame + + + Pending + En attente + + + + Available + Disponible + + + + YOUR CONTACT LIST + VOTRE LISTE DE CONTACTS + + + + COPY ADDRESS + COPIER L'ADRESSE + + + + PAY TO + PAYER À + + + + EDIT CONTACT + MODIFIER LE CONTACT + + + + DELETE CONTACT + SUPPRIMER LE CONTACT + + + + DASHBOARD + TABLEAU DE BORD + + + + TRANSACTIONS + TRANSACTIONS + + + + INBOX + BOÎTE DE RÉCEPTION + + + + ADDRESS BOOK + CARNET D'ADRESSES + + + + SEND FUNDS + ENVOYER DES FONDS + + + + SEND MESSAGE + ENVOYER UN MESSAGE + + + + + OPEN WALLET + OUVRIR LE PORTEFEUILLE + + + + ABOUT + À PROPOS + + + + Quarter + Quart + + + + Half + Moitié + + + + + Address + Adresse + + + + Payment ID (Optional) - Required at some Exchanges + ID de paiement (Optionnel) - Requis pour certains échanges + + + + Message (Optional) + Message (Optionnel) + + + + Amount + Montant + + + + Save to Address Book + Sauvegarder dans le carnet d'adresses + + + + ABOUT QT + À PROPOS DE QT + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) + Ce produit inclut des logiciels développés par le projet OpenSSL pour une utilisation dans la boîte à outils OpenSSL (http://www.openssl.org/) + + + + EXPORT CSV + EXPORTER CSV + + + + HISTORICAL DATA + DONNÉES HISTORIQUES + + + + Message + Message + + + + Set self destruct time + Définir le temps d'auto-destruction + + + + Do not include message in blockchain + Ne pas inclure le message dans la blockchain + + + + Note: Maximum message size is 260 characters. + Note : La taille maximale du message est de 260 caractères. + + + + PRICE + PRIX + + + + 24 HOUR CHANGE + VARIATION SUR 24H + + + + Locked Deposits + Dépôts verrouillés + + + + Withdrawable + Retirable + + + + TOTAL BALANCE + SOLDE TOTAL + + + + RECENT ACTIVITY + ACTIVITÉ RÉCENTE + + + + Discord + Discord + + + + Telegram + Telegram + + + + Market Place + Bonnes Affaires + + + + TradeOgre + TradeOgre + + + + Twitter + Twitter + + + + Medium + Medium + + + + DEPOSIT HISTORY + TOUS VOS DÉPÔTS + + + + A complete history of all your deposits. Double-click an individual deposit for a more detailed view. + Historique complet de tous vos dépôts. Double-cliquez sur un dépôt pour des infos plus détaillées. + + + + NEW DEPOSIT + NOUVEAU DÉPÔT + + + + How much do you want to deposit? + Combien souhaitez-vous déposer ? + + + + How long should your deposit last? + Quelle durée pour votre dépôt ? + + + + Interest rate: + Taux d'intérêt : + + + + Fees for this deposit: + Frais pour ce dépôt : + + + + Deposit Details + Détails du dépôt + + + + Length on the blockchain: + Durée sur la blockchain : + + + + Rewards you will earn: + Récompenses à terme : + + + + This wallet is locked. Please click below to unlock your wallet. + Ce portefeuille est verrouillé. Veuillez cliquer ci-dessous pour déverrouiller votre portefeuille. + + + + UNLOCK WALLET + DÉVERROUILLER LE PORTEFEUILLE + + + + CONCEAL.NETWORK + CONCEAL.NETWORK + + + + Connection + Connexion + + + + + SAVE + ENREGISTRER + + + + Set connection type + Définir le type de connexion + + + + Built-in Node + Nœud intégré + + + + Custom Remote Node + Nœud distant personnalisé + + + + Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost. + Veuillez vous assurer que l'adresse et l'ID de paiement (si inclus) sont corrects avant l'envoi. Les fonds envoyés à une mauvaise adresse seront perdus. + + + + Automatic Remote Node + Nœud distant automatique + + + + Optimization + Optimisation + + + + Auto optimization + Optimisation automatique + + + + + + + + ENABLE + ACTIVER + + + + Rescan wallet + Scanner à nouveau le portefeuille + + + + Large transactions + Transactions volumineuses + + + + (Optimization not required) + (Optimisation non requise) + + + + Preferences + Préférences + + + + English + Anglais + + + + Close to tray + Fermer en barre de tâche + + + + Chinese + Chinois + + + + Currency + Devise + + + + Turkish + Turc + + + + Language + Langue + + + + Russian + Russe + + + + French + Français + + + + COPY PAYMENT ID + COPIER L'ID DE PAIEMENT + + + + + NEW MESSAGE + NOUVEAU MESSAGE + + + + NEW CONTACT + NOUVEAU CONTACT + + + + HELP DESK + ASSISTANCE + + + + DONATION + DON + + + + All + Tout + + + + + Send + Envoyer + + + + + Cancel + Annuler + + + + Clear All + Tout effacer + + + + <html><head/><body><p><span style=" font-weight:600;">ABOUT CONCEAL</span></p><p>Conceal.Network is a decentralized blockchain bank, with deposits and investments paying interest rates, without involvement of financial institutions, powered by 100% open source code. Conceal.Network enables untraceable and anonymous messaging, and a secure way to transfer funds. Using a distributed public ledger, the sender and receiver are kept anonymous.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">https://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> + <html><head/><body><p><span style=" font-weight:600;">À PROPOS DE CONCEAL</span></p><p>Conceal.Network est une banque blockchain décentralisée, avec des dépôts et des investissements rapportant des intérêts, sans l'intervention d'institutions financières, alimentée par un code 100% open source. Conceal.Network permet la messagerie intraçable et anonyme, et un moyen sécurisé de transférer des fonds. En utilisant un registre public distribué, l'expéditeur et le destinataire restent anonymes.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">https://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> + + + + ABOUT CONCEAL DESKTOP + À PROPOS DE CONCEAL DESKTOP + + + + This software is using Qt + Ce logiciel utilise Qt + + + + This software is using QtCharts + Ce logiciel utilise QtCharts + + + + + LICENSE AND SOURCE CODE + LICENCE ET CODE SOURCE + + + + This is your transaction history. It is a list of all incoming and outgoing transactions, deposits, and optimizations. If there are any discrepancies, please do a rescan of your wallet to purge any failed transactions from the list. Double-click individual entries to get a more detailed view. + Ceci est votre historique de transactions. C'est une liste de toutes les transactions entrantes et sortantes, des dépôts et des optimisations. S'il y a des divergences, veuillez effectuer une nouvelle analyse de votre portefeuille pour purger toute transaction échouée de la liste. Double-cliquez sur les entrées individuelles pour obtenir une vue plus détaillée. + + + + Clear + Effacer + + + + Refresh data + Rafraichir cours + + + + BUY/MARKETS + + + + + TOOLS + OUTILS + + + + + + + + + + + + sm + sm + + + BitMart + BitMart + + + + Wiki + Wiki + + + + GitHub + GitHub + + + + COMMUNITY + COMMUNAUTÉ + + + + Website + Site web + + + + Web Wallet + + + + + Withdraw Deposit + Retirer le dépôt + + + + Make Deposit + Faire un dépôt + + + + Click to Copy + Cliquer pour copier + + + + Settings + Paramètres + + + + Show QR Code + Afficher le QR Code + + + + Lock Wallet + Verrouiller le portefeuille + + + + OPTIMIZE + OPTIMISER + + + + START + DÉMARRER + + + + Font + Police + + + + Minimize to tray + Minimiser dans la barre + + + + Start Maximized + Ouvrir plein écran + + + + Font Size + Taille de la police + + + + Auto refresh data + Actu auto des données + + + + Wallet Operations + Opérations du portefeuille + + + + New/Existing + Nouveau/Existant + + + + Status + État + + + + NEW WALLET + NOUVEAU PORTEFEUILLE + + + + ENCRYPT WALLET + CHIFFRER LE PORTEFEUILLE + + + + Import + Importer + + + + IMPORT PRIVATE KEYS + IMPORTER LES CLÉS PRIVÉES + + + + IMPORT SEED + IMPORTER LA PHRASE MNÉMONIQUE + + + + IMPORT TRACKING WALLET + IMPORTER LE PORTEFEUILLE DE SUIVI + + + + Backup + Sauvegarde + + + + BACKUP KEYS + SAUVEGARDE CLÉS + + + + BACKUP WALLET FILE + SAUVEGARDE FICHIER PORTEFEUILLE + + + + MESSAGE OVERVIEW + + + + + Current Wallet + Portefeuille + + + + Portfolio (CCX) + + + + + A list of incoming and outgoing messages for this wallet. + Liste des messages entrants et sortants pour ce portefeuille. + + + + Portfolio (USD) + + + + + Current Height + Hauteur Actuelle + + + + BANKING + BANQUE + + + + VOLUME + VOLUME + + + + MARKETCAP + CAPITALISATION + + + + MARKET INFORMATION + INFORMATIONS DU MARCHÉ + + + + PasswordDialog + + + Type your password... + + + + + CONTINUE + + + + + Incorrect Password + Mot de Passe incorrect + + + + CANCEL + ANNULER + + + + + Please Enter Your Password + + + + + QObject + + + blocks + blocs + + + + + + + Error + Erreur + + + + Help + Aide + + + + + Fail + Échec + + + + %1 Wallet failed to start. +Check that port %2 is not already in use. + Le portefeuille %1 n'a pas pu démarrer. +Vérifiez que le port %2 n'est pas déjà utilisé. + + + + STARTING WALLET + DÉMARRAGE DU PORTEFEUILLE + + + + Seed confirmation error + Erreur de confirmation de la phrase mnémonique + + + + Conceal Desktop Update + Mise à jour de Conceal Desktop + + + + There is an update available. +Would you like to go to the download page? + Une mise à jour est disponible. +Voulez-vous aller à la page de téléchargement ? + + + + ReceiveFrame + + + YOUR 25 WORD MNEMONIC SEED + + + + + + COPY + + + + + + + + BACK + + + + + private spend key goes here + + + + + private view key goes here + + + + + Advanced Users: + + + + + PRIVATE KEYS + + + + + TRACKING KEY + + + + + Your wallet is an older format that does not support mnemonic seeds. +Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet. + + + + + YOUR TRACKING KEY + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'monospace'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tracking key goes here</p></body></html> + + + + + COPY SPEND KEY + + + + + PRIVATE SPEND KEY + + + + + PRIVATE VIEW KEY + + + + + COPY VIEW KEY + + + + + ■ Keep your seed and password safe + + + + + Wallet Key Backup + + + + + WALLET KEY BACKUP + + + + + ■ Make a backup of your wallet file + + + + + ■ Be aware of phishing websites and programs + + + + + ■ Store a copy of your seed in a safe place + + + + + We care about your safety: Please read the following + + + + + SHOW SEED + + + + + ShowQRCode + + + Wallet Address QR Code + + + + + TransactionDetailsDialog + + + + Transaction Details + + + + + CLOSE + + + + + TransactionFrame + + + Transaction + + + + + Updater + + + Error: %1 + + + + + WalletGui::AddressBookModel + + + Label + + + + + Address + + + + + Payment ID + + + + + WalletGui::ChangePasswordDialog + + + Password not confirmed + + + + + WalletGui::CommandLineParser + + + Used to deploy test nets. Checkpoints and hardcoded seeds are ignored, network id is changed. Use it with –data-dir flag. The wallet must be launched with –testnet flag + + + + + Interface for p2p network protocol + + + + + ip + + + + + Port for p2p network protocol + + + + + + port + + + + + External port for p2p network protocol (if port forwarding used with NAT) + + + + + Allow local ip add to peer list, mostly in debug purposes + + + + + Manually add peer to local peerlist + + + + + peer + + + + + Specify list of peers to connect to and attempt to keep the connection open + + + + + + + node + + + + + Specify list of peers to connect to only. If this option is given the options add-priority-node and seed-node are ignored + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Do not announce yourself as peerlist candidate + + + + + Specify data directory + + + + + directory + + + + + Run application in minimized mode + + + + + Conceal Desktop + + + + + WalletGui::ContactDialog + + + New Contact + + + + + Edit Contact + + + + + Invalid address + + + + + Invalid payment ID + + + + + Contact with such label already exists. + + + + + WalletGui::DepositModel + + + Status + + + + + Amount + Montant + + + + Interest + + + + + Sum + + + + + Rate + + + + + Term + + + + + Unlock height + + + + + Unlock time + Échéance + + + + Creating transaction + + + + + Creating height + Hauteur de création + + + + Creating time + + + + + Spending transaction + + + + + Spending height + + + + + Spending time + + + + + Type + + + + + Locked + + + + + Unlocked + + + + + Spent + + + + + WalletGui::ImportGUIKeyDialog + + + Wallet file + + + + + Wallets (*.wallet) + + + + + WalletGui::ImportSecretKeysDialog + + + Wallet file + + + + + Wallets (*.wallet) + + + + + Private Spend Key is not valid. The private spend key you entered is not valid. + + + + + Private View Key is not valid. The private view key you entered is not valid. + + + + + The wallet file already exists. Please change the wallet path and try again. + + + + + Key is not valid. The private spend key you entered is not valid. + + + + + Key is not valid. The private view key you entered is not valid. + + + + + WalletGui::ImportSeedDialog + + + Wallet file + + + + + Wallets (*.wallet) + + + + + Invalid seed. Seed phrase is not 25 words! Please try again. + + + + + The wallet file already exists. Please change the wallet path and try again. + + + + + Invalid seed. Please check your seed and try again. + + + + + WalletGui::ImportTrackingDialog + + + Wallet file + + + + + Wallets (*.wallet) + + + + + Tracking key is not valid. The tracking key you entered is not valid. + + + + + The wallet file already exists. Please change the wallet path and try again. + + + + + Key is not valid. The public spend key you entered is not valid. + + + + + Key is not valid. The public view key you entered is not valid. + + + + + Key is not valid. The private spend key you entered is not valid. + + + + + Key is not valid. The private view key you entered is not valid. + + + + + WalletGui::MainPasswordDialog + + + Conceal Desktop %1 + + + + + WalletGui::MainWindow + + + Wallets (*.wallet) + + + + + Open .wallet/.keys file + + + + + Show + + + + + Quit Conceal Desktop + + + + + Wallet (*.wallet *.keys) + + + + + Backup wallet to... + Sauvegarder le portefeuille vers... + + + + Warning + + + + + Your wallet will be reset and restored from blockchain. +Are you sure? + + + + + Wallet error + + + + + Wallet + + + + + WalletGui::MessageDetailsDialog + + + Save message + + + + + File already exists + + + + + Warning! File already exists and will be overwritten, are you sure? + + + + + File error + + + + + WalletGui::MessagesModel + + + Date + + + + + Type + + + + + Height + + + + + Message + + + + + Transaction Hash + + + + + Message Size + + + + + Amount + Montant + + + + Out + + + + + In + + + + + WalletGui::NewPasswordDialog + + + Password not confirmed + + + + + WalletGui::OverviewFrame + + + Month(s) + + + + + + + + + + + + + + CLICK TO DISABLE + Clique pour désactiver + + + + + + + + + + + + + CLICK TO ENABLE + Clique pour activer + + + + Recommended + Recommandé + + + + Not required + Non necessaire + + + + CHANGE PASSWORD + CHANGER MOT DE PASSE + + + + Market data from coingecko.com - Last updated: %1 + Cours fournie par coingecko.com - le: %1 + + + + Portfolio ( + + + + + Available Balance: + + + + + + Failed to lookup Conceal ID + + + + + + Could not check Conceal ID + + + + + Invalid recipient address + + + + + Invalid payment ID + + + + + Insufficient funds. Please ensure that you have enough funds for the amount plus fees. + + + + + Message too long. Please ensure that the message is less than 260 characters. + + + + + You don't have enough balance in your account! + + + + + Deposit Confirmation + + + + + Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? + + + + + + + + + + + + + This is a tracking wallet. +This action is not available. + + + + + Data updated + + + + + BANKING + + + + + TRANSACTIONS + + + + + CONCEAL.NETWORK + + + + + ABOUT + + + + + WALLET SETTINGS + + + + + INBOX + + + + + + SEND FUNDS + + + + + + Address copied to clipboard + + + + + Synchronization is in progress. +This option is not available until your wallet is synchronized with the network. + + + + + + SEND MESSAGE + + + + + ADDRESS BOOK + + + + + Warning: you have reached the maximum message size of 260 characters. + + + + + Auto optimization disabled + + + + + Auto optimization enabled. +Your wallet will be optimized automatically every 15 minutes. + + + + + Language and Currency settings saved + + + + + + Please restart the wallet for the new settings to take effect. + + + + + Connection settings saved + + + + + Payment ID copied to clipboard + + + + + Lock Wallet + + + + + Would you like to lock your wallet? While your wallet is locked, it will continue to synchronize with the network. You will need to enter your wallet password to unlock it. + + + + + Select CSV file + + + + + WalletGui::RecentTransactionDelegate + + + New Block + + + + + Deposit Unlock + + + + + Incoming TX + TX Entrante + + + + Outgoing TX + TX Sortante + + + + Optimization + + + + + New Deposit + + + + + WalletGui::TransactionsModel + + + Date + + + + + Type + + + + + Address + + + + + Amount + + + + + Fee + Frais + + + + Height + + + + + Payment ID + + + + + Message + + + + + Transaction Hash + + + + + unconfirmed + + + + + confirmations + + + + + me (%1) + + + + + (n/a) + + + + + Unconfirmed + + + + + Confirmed + Confirmée + + + + not found + + + + + WalletGui::WalletAdapter + + + Importing keys + + + + + Saving data + + + + + Opening wallet + + + + + Creating wallet + + + + + Sending transaction + + + + + Optimizing wallet + + + + + Sending message + + + + + Creating deposit + + + + + Withdrawing deposit + + + + + + Ready + + + + + Synchronizing + + + + + Synchronized + + + + + Warning + + + + + Unencrypted + + + + + Encrypted + + + + + There was a problem, please restart your wallet. + + + + + WalletGui::WelcomeFrame + + + Unable to create the wallet. + + + + + Unable to create a new wallet at the path provided. +Please choose another location. + + + + + New wallet file + + + + + Wallets (*.wallet) + + + + + You must confirm that you have safely stored the mnemonic seed and understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + + + + The words entered does not match the seed. Please try again. + + + + + WelcomeFrame + + + Welcome + + + + + Create a new wallet address along with a secret seed phrase + + + + + Already have a wallet? open the wallet and access your assets + + + + + Import an existing wallet with the secret seed phrase and access your CCX + + + + + Advanced users can import using other keys + + + + + Create a new wallet + + + + + Wallet Path + + + + + Where would you like to save your wallet? + + + + + Choose a path where you would like to save your wallet. + + + + + + BACK + + + + + Mnemonic seed + + + + + Please save the following mnemonic seed safely, it is used to recover your wallet (or import it on another machine). + + + + + Don't lose your seed or you might lose your wallet (and funds) forever. + + + + + Copy seed + + + + + Mnemonic seed confirmation + + + + + Enter your seed to confirm you have saved it. + + + + + I have safely stored the mnemonic seed and I understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + + + + ■ Conceal is a decentralized blockchain bank. + + + + + ■ The wallet allows access to all Conceal services. + + + + + ■ You control the private keys to your funds. + + + + + + + + + + NEXT + + + + + WELCOME TO CONCEAL DESKTOP + + + + + ■ Conceal Desktop is a free, open-source interface. + + + + + How does Conceal Desktop work? + + + + + ■ When creating a wallet, you are creating a set of cryptographic keys + + + + + a seed, and a wallet address. + + + + + ■ If you send your public address to someone then they can send you CCX. + + + + + ■ The developers of Conceal have no access to your password, your keys, + + + + + ■ NEVER share your seed, keys, or wallet file with anyone. + + + + + Doing so means they have complete control over your funds. + + + + + or your seed. If you forget your password, or lose your seed, + + + + + there is nothing we can do. Always keep a copy of your seed in a secure place. + + + + + ■ You are responsible for your own security. + + + + + ■ No one can recover or change your private keys or seed. + + + + + ■ No one can recover your password. + + + + + ■ No one can refund your transactions. + + + + + only YOU are in control + + + + + ■ No one can freeze your funds. + + + + + Getting Started + + + + + CREATE NEW WALLET + + + + + OPEN EXISTING WALLET + + + + + IMPORT PRIVATE KEYS + + + + + IMPORT GUI KEY + + + + + IMPORT SEED + + + + diff --git a/src/languages/ru.qm b/src/languages/ru.qm index 0c660e80040225033c00f953452071992dac4c3f..4d2ca38e5da98920742cc6a9020bfaa0bc43a28d 100644 GIT binary patch delta 2821 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 - About %1 - О %1 + Select address + Выберите адрес + + + CHOOSE + ВЫБРАТЬ + + + Change Password + Сменить пароль + + + Current Password + Текущий пароль + + + New Password + Новый пароль + + + Confirm New Password + Подтвердить новый пароль + + + Password not confirmed + Пароль не подтвержден - <html><head/><body><p>Version %1</p><p>Conceal.Network is a decentralized blockchain bank, with deposits and investments paying interest rates, without involvement of financial institutions, powered by 100% open source code. Conceal.Network enables untraceable and anonymous messaging, and a secure way to transfer funds. Using a distributed public ledger, the sender and receiver are kept anonymous.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">http://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> + SAVE + СОХРАНИТЬ + + + CANCEL + ОТМЕНИТЬ + + + Contact + + Label + Ярлык + + + Address + Адрес + + + Payment ID + Идентификатор транзакции + + + OK + ОК + + + CANCEL + ОТМЕНИТЬ + + + Deposit Details + Информация о депозите + CLOSE ЗАКРЫТЬ - The Conceal Wallet - Кошелек Conceal + Saving data + Сохранение данных - Select address - Выберите адрес + %1 wallet is saving data. +Please wait... + - CHOOSE - ВЫБРАТЬ + Import GUI key + Импортировать ключ GUI - Address Book - Адресная книга + Import GUI Key + Импортировать ключ GUI - ADDRESS BOOK - АДРЕСНАЯ КНИГА + GUI Key + Ключ GUI - COPY ADDRESS - КОПИРОВАТЬ АДРЕС + Wallet Path + Путь к файлу кошелька - REMOVE ADDRESS - УДАЛИТЬ АДРЕС + Where would you like to save your wallet? + - ADD NEW ADDRESS - ДОБАВИТЬ НОВЫЙ АДРЕС + IMPORT + ИМПОРТИРОВАТЬ - BACK - НАЗАД + CANCEL + ОТМЕНИТЬ - Frame - + Recreate your wallet with the GUI key + Пересоздайте ваш кошелек с помощью ключа GUI - Settings - Настройки + Dialog + Диалог - BACK - НАЗАД + Import Private Keys + Импортировать секретные ключи - OPTIMIZE NOW - ОПТИМИЗИРОВАТЬ + Recreate your wallet with the secret spend and view keys + Пересоздайте ваш кошелек с помощью ключа для трат (Spend Key) и ключа для просмотра (View Key) - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">This process will optimize your wallet for large transactions. The optimization will take approximately 22 minutes. Please note that you will not be able to spend any of your funds until the optimization process is complete. In some cases, the wallet might need optimization more than once.</span></p></body></html> - Этот процесс оптимизирует ваш кошелек для крупных транзакций. Оптимизация займет около 22 минут. Обратите внимание, что вы не сможете тратить свои деньги, пока не завершите процесс оптимизации. В некоторых случаях кошелек может потребоваться оптимизировать более одного раза. + Private Spend Key + Приватный ключ для трат (Private Spend Key) - Optimization recommended for this wallet - Для данного кошелька рекомендуется оптимизация + Private View Key + Приватный ключ для просмотра (Private View Key) - Optimize Wallet - Оптимизировать кошелек + Wallet Path + Путь к файлу кошелька - Auto Optimization - Авто Оптимизация + IMPORT + ИМПОРТИРОВАТЬ - ENABLE - Включи + CANCEL + ОТМЕНИТЬ - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">Enable auto-optimize and the wallet will automatically optimize your wallet in the background while your wallet is open. The operation will only run if the wallet requires optimization . The process will check every 15 minutes. Auto optimization is disbaled by default.</span></p></body></html> - Включите автоматическую оптимизацию, и кошелек автоматически оптимизирует ваш кошелек в фоновом режиме, пока ваш кошелек открыт. Операция будет выполнена только в том случае, если кошелек требует оптимизации. Процесс будет проверять каждые 15 минут. Автоматическая оптимизация по умолчанию отключена. + Import Private Keys + Импортировать секретные ключи - Rescan Wallet - Сбросить кошелек + Recreate your wallet with the secret spend and view keys + Пересоздайте ваш кошелек с помощью ключа для трат (Spend Key) и ключа для просмотра (View Key) - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">When you rescan, the wallet scans the blockchain again to refresh your wallet and transaction details.</span></p></body></html> - При повторном сканировании кошелек снова сканирует блокчейн, чтобы обновить ваш кошелек и детали транзакции. + Private Spend Key + Приватный ключ для трат (Private Spend Key) - RESCAN NOW - Сбросить кошелек + Private View Key + Приватный ключ для просмотра (Private View Key) - Close to Tray - Закрывать в трей + Wallet Path + Путь к файлу кошелька - Minimize to Tray - Сворачивать в трей + Where would you like to save your wallet? + - Built-in Node - Локальная нода + IMPORT + ИМПОРТИРОВАТЬ - Custom Remote Node - Пользовательская удаленная нода + CANCEL + ОТМЕНИТЬ - Automatic Remote Node - Автоматическая удаленная нода + Import :: Mnemonic Seed + Импортировать :: Мнемоническая фраза - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">By default your wallet will connect using the built-in node, helping with decentralisation. You can also use a remote node if you dont want to download the entire blockchain.Please note that some remote nodes will have fees when sending transactions.</span></p></body></html> - По умолчанию ваш кошелек будет подключаться с помощью встроенного узла, что поможет в децентрализации. Вы также можете использовать удаленный узел, если вы не хотите загружать весь блокчейн. Обратите внимание, что некоторые удаленные узлы будут платить за отправку транзакций. + Recreate your wallet with the 25 word mnemonic seed + Пересоздайте ваш кошелек с помощью 25-составной мнемонической фразы - Set Connection Type - Настройки подключения + Import Mnemonic Seed + Импортировать мнемоническую фразу - Russian - Русский + Mnemonic Seed + Мнемоническая фраза - Turkish - Турецкий + Wallet Path + Путь к файлу кошелька - English - Английский + IMPORT + ИМПОРТИРОВАТЬ - Select Language - Выбеите ваш язык + CANCEL + ОТМЕНИТЬ - Other + Import Mnemonic Seed + Импортировать мнемоническую фразу + + + Recreate your wallet with the 25 word mnemonic seed + Пересоздайте ваш кошелек с помощью 25-составной мнемонической фразы + + + Mnemonic Seed + Мнемоническая фраза + + + Wallet Path + Путь к файлу кошелька + + + Where would you like to save your wallet? - SAVE - СОХРАНИТЬ + IMPORT + ИМПОРТИРОВАТЬ - Chinese - китайский язык + CANCEL + ОТМЕНИТЬ - Change Password - Сменить пароль + Import + ИМПОРТИРОВАТЬ - Current Password - Текущий пароль + Import a tracking wallet (view-only) + ИМПОРТИРОВАТЬ VIEW-ONLY КОШЕЛЕК - New Password - Новый пароль + Import Tracking Key + Ключ для отслеживания транзакции (Tracking Key) - Confirm New Password - Подтвердить новый пароль + Tracking Key + Ключ для отслеживания транзакции (Tracking Key) - Password not confirmed - Пароль не подтвержден + Wallet Path + Путь к файлу кошелька - SAVE - СОХРАНИТЬ + IMPORT + ИМПОРТИРОВАТЬ CANCEL ОТМЕНИТЬ - Deposit Details - Информация о депозите + Dialog + Диалог - CLOSE - ЗАКРЫТЬ + Wallet path: + Путь к файлу кошелька: - Frame - + Tracking key + Ключ для отслеживания транзакции (Tracking Key) - BACK - НАЗАД + EXIT + ВЫХОД - BANKING - БАНКОВСКИЕ ОПЕРАЦИИ + IMPORT VIEW ONLY WALLET + ИМПОРТИРОВАТЬ VIEW-ONLY КОШЕЛЕК - CREATE - СОЗДАТЬ + Import Tracking Key + Ключ для отслеживания транзакции (Tracking Key) - Select the length of your deposit - Выберите время вашего депозита + Import a tracking wallet (view-only) + ИМПОРТИРОВАТЬ VIEW-ONLY КОШЕЛЕК - The fee for this deposit: - Комиссия для данного депозита: + Tracking Key + Ключ для отслеживания транзакции (Tracking Key) - How much would you like to deposit? - Какую сумму вы бы хотели внести в депозит? + Wallet Path + Путь к файлу кошелька - 5040 blocks + Where would you like to save your wallet? - Interest earned at the end of your deposit: - Процентные начисления, которые вы получите по завершению вашего депозита: + IMPORT + ИМПОРТИРОВАТЬ + + + CANCEL + ОТМЕНИТЬ - 0.001000 + Enter password + Введите пароль + + + Type your password... - interestLabel - Ярлык инвестиции + CONTINUE + ПРОДОЛЖИТЬ - (minimum of 1 CCX) - (минимальная сумма - 1 CCX) + Incorrect Password. Please try again. + - (minimum term of 1 week, maximum 52 weeks) - (минимальный срок - 1 неделя, макимальный - 52 недели) + Welcome Back + - Length in blocks: - Длина в блоках: + currentWallet + СИНХРОНИЗАЦИЯ - ADD ALL - ДОБАВИТЬ ВСЕ + Click CONTINUE or press ENTER to unlock your wallet + - Unlocked Investments - Разблокированные инвестиции + Conceal Desktop 6.2.1 + - WITHDRAW - ВЫВЕСТИ СРЕДСТВА + HELP + - Withdraw - Вывести Средства + EXIT + ВЫХОД - Unlocked Deposits - Разблокированные депозиты + CHANGE + - Total Unlocked - Всего разблокировано + Click CHANGE to choose (or create) another wallet + - INTEREST % PER WEEK - ПРОЦЕНТЫ ЗА НЕДЕЛЮ + MainWindow + Главное окно - Weeks - Недели + OVERVIEW + ОБЗОР - Interest - Проценты + SEND + ОТПРАВИТЬ - NEW DEPOSIT - НОВЫЙ ДЕПОЗИТ + KEYS + КЛЮЧИ - NEW INVESTMENT - НОВАЯ ИНВЕСТИЦИЯ + TRANSACTIONS + ТРАНЗАКЦИИ - Select the length of your investment - Выберите время вашей инвестиции + Exit + ВЫХОД - Fee - Комиссия + Ctrl+Q + Ctrl+Q - Quarters - Кварталы + ADDRESS BOOK + АДРЕСНАЯ КНИГА - How much would you like to invest? - На какую сумму вы бы хотели сделать инвестицию? + Create wallet + Создать кошелек - 68400 blocks - + Open wallet + Открыть кошелек - CCX - + Encrypt wallet + Зашифровать кошелек - investmentInterest - Процент инвестиции + Change password + Сменить пароль - (minimum of 50,000 CCX) - (минимальная сумма - 50,000 CCX) + About + Информация - (minimum term of 1 quarter, maximum 20 quarters) - (минимальный срок - 1 квартал, максимальный - 20 кварталов) + About Qt + О Qt - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - + Backup wallet + Сделать запасную копию кошелька - Legal Disclaimer - Правовое уведомление + Start on system login + Запускать программу с включением компьютера - <html><head/><body><p>Conceal is an open source experimental project, which means that there is no company behind it. This project is supported by the community, meaning there is no stable, full-time team and no physical headquarters from which the projects runs its operations. </p><p>Conceal is distributed in the hope that it will be useful to mankind, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANT ABILITY or FITNESS FOR A PARTICULAR PURPOSE.</p><p>Copyright Notice </p><p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: </p><p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. </p><p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p><p>Copyright 2018-2019 - Conceal.Network</p></body></html> - + Minimize to tray + Сворачивать в трей - CLOSE - ЗАКРЫТЬ + Close to tray + Закрывать в трей - Saving data - Сохранение данных + MESSAGES + СООБЩЕНИЯ - %1 wallet is saving data. -Please wait... - Кошелек %1 сохраняет данные. + SEND MESSAGE + ОТПРАВИТЬ СООБЩЕНИЕ Import GUI key Импортировать ключ GUI - Import GUI Key - Импортировать ключ GUI + DEPOSITS + ДЕПОЗИТЫ - GUI Key - Ключ GUI + BANKING + БАНКОВСКИЕ ОПЕРАЦИИ - Wallet Path - Путь к файлу кошелька + Reset wallet + Сбросить кошелек - ... - + Import spend/view key + Импортировать ключ для трат/ключ для просмотра - IMPORT - ИМПОРТИРОВАТЬ + Import mnemonic seed + Импортировать мнемоническую фразу - CANCEL - ОТМЕНИТЬ + Connection settings + Настройки подключения - Recreate your wallet with the GUI key - Пересоздайте ваш кошелек с помощью ключа GUI + Optimize wallet + Оптимизировать кошелек - Import :: Mnemonic Seed - Импортировать :: Мнемоническая фраза + Import view wallet + Импортировать view-only кошелек - Recreate your wallet with the 25 word mnemonic seed - Пересоздайте ваш кошелек с помощью 25-составной мнемонической фразы + Conceal Desktop + - Import Mnemonic Seed - Импортировать мнемоническую фразу + Send To: + Получатель: - Mnemonic Seed - Мнемоническая фраза + Message + Сообщение - Wallet Path - Путь к файлу кошелька + Message Details + - IMPORT - ИМПОРТИРОВАТЬ + Block height + Высота блока - CANCEL - ОТМЕНИТЬ + Amount + Сумма - ... - + Transaction hash + Хэш транзакции - Dialog - Диалог + Message size (bytes) + Размер сообщения (в битах) - Wallet path: - Путь к файлу кошелька: + SAVE TO FILE + Сохранить в файл - ... - + OK + ОК - Tracking key - Ключ для отслеживания транзакции (Tracking Key) + New address + Новый адрес + + + Address: + Адрес: + + + Label: + Ярлык: - IMPORT - ИМПОРТИРОВАТЬ + Payment ID: + Идентификатор транзакции: - EXIT - ВЫХОД + CANCEL + ОТМЕНИТЬ - IMPORT VIEW ONLY WALLET - ИМПОРТИРОВАТЬ VIEW-ONLY КОШЕЛЕК + OK + ОК - Connection Settings - Настройки подключения + Enter password + Введите пароль - Select Your Language - Выбеите ваш язык + New Password + Новый пароль - English - Английский + Confirm Password + Подтвердить пароль - CLOSE - ЗАКРЫТЬ + Password not confirmed + Пароль не подтвержден SAVE СОХРАНИТЬ - Russian - Русский + CLOSE + ЗАКРЫТЬ - Turkish - Турецкий + BANKING + БАНКОВСКИЕ ОПЕРАЦИИ - Chinese - китайский язык + INBOX + - Links - Ссылки + ABOUT + ОКОЛО - <html><head/><body><p align="center">Website<br/><a href="https://conceal.network"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network</span></a></p><p align="center">Discord<br/><a href="https://discord.conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://discord.conceal.network/</span></a></p><p align="center">Telegram<br/><a href="https://t.co/55klBHKGUR"><span style=" text-decoration: underline; color:#ffa500;">https://t.co/55klBHKGUR</span></a></p><p align="center">Twitter<br/><a href="https://twitter.com/ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://twitter.com/ConcealNetwork</span></a></p><p align="center">Reddit<br/><a href="https://www.reddit.com/r/ConcealNetwork/"><span style=" text-decoration: underline; color:#ffa500;">https://www.reddit.com/r/ConcealNetwork/</span></a></p><p align="center">Medium<br/><a href="https://medium.com/@ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://medium.com/@ConcealNetwork</span></a></p><p align="center">Github<br/><a href="https://github.com/ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://github.com/ConcealNetwork</span></a></p><p align="center">Bitcointalk<br/><a href="https://bitcointalk.org/index.php?topic=5086106"><span style=" text-decoration: underline; color:#ffa500;">https://bitcointalk.org/index.php?topic=5086106</span></a></p></body></html> - + TRANSACTIONS + ТРАНЗАКЦИИ - CLOSE - ЗАКРЫТЬ + SETTINGS + НАСТРОЙКИ - MainWindow - Главное окно + WALLET + КОШЕЛЕК - OVERVIEW - ОБЗОР + DASHBOARD + ПРИБОРНАЯ ДОСКА - SEND - ОТПРАВИТЬ + ADDRESS BOOK + АДРЕСНАЯ КНИГА - KEYS - КЛЮЧИ + ABOUT QT + О QT - TRANSACTIONS - ТРАНЗАКЦИИ + LOCK + ЗАМОК - Exit - ВЫХОД + DEPOSITS + ДЕПОЗИТЫ - Ctrl+Q - Ctrl+Q + Locked + Заблокировано - ADDRESS BOOK - АДРЕСНАЯ КНИГА + DEPOSIT + ДЕПОЗИТЫ - Create wallet - Создать кошелек + Withdrawable + Доступно к выводу - Open wallet - Открыть кошелек + INVESTMENTS + ИНВЕСТИЦИИ - Encrypt wallet - Зашифровать кошелек + COPY WALLET ADDRESS + АДРЕС КОШЕЛЬКА - Change password - Сменить пароль + currentWallet + СИНХРОНИЗАЦИЯ - About - Информация + SEND FUNDS + ОТПРАВИТЬ СРЕДСТВА - About Qt - О Qt + NEW MESSAGE + НОВОЕ СООБЩЕНИЕ - Backup wallet - Сделать запасную копию кошелька + CONTACT US / STAY INFORMED + СВЯЗАТЬСЯ С НАМИ - Start on system login - Запускать программу с включением компьютера + Discord + - Minimize to tray - Сворачивать в трей + Telegram + - Close to tray - Закрывать в трей + Twitter + - MESSAGES - СООБЩЕНИЯ + Medium + - SEND MESSAGE - ОТПРАВИТЬ СООБЩЕНИЕ + Locked Deposits + Закрытые вклады - Import GUI key - Импортировать ключ GUI + Available + Доступно - DEPOSITS - ДЕПОЗИТЫ + TOTAL BALANCE + ИТОГОВЫЙ БАЛАНС - BANKING - БАНКОВСКИЕ ОПЕРАЦИИ + Portfolio + портфолио - Reset wallet - Сбросить кошелек + RECENT ACTIVITY + ПОСЛЕДНЕЕ - Import spend/view key - Импортировать ключ для трат/ключ для просмотра + VOLUME + - Import mnemonic seed - Импортировать мнемоническую фразу + MARKETCAP + КАПИТАЛИЗАЦИЯ - Connection settings - Настройки подключения + MARKET INFORMATION + РЫНОЧНАЯ ИНФОРМАЦИЯ - Optimize wallet - Оптимизировать кошелек + HISTORICAL DATA + ИСТОРИЧЕСКИЕ ДАННЫЕ - Import view wallet - Импортировать view-only кошелек + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Poppins'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8.25pt;">This is your transaction history. It is a list of all incoming and outgoing transactions, deposits, and optimizations. If there are any discrpencises, please do a rescan of your wallet to purge any failed transactions from the list. Double-click individual entires to get a more detailed view.</span></p></body></html> + Это ваша история транзакций. Это список всех входящих и исходящих транзакций, депозитов и оптимизаций. Если есть какие-либо неточности, пожалуйста, сделайте повторную проверку вашего кошелька, чтобы удалить все неудачные транзакции из списка. Дважды щелкните отдельные объекты, чтобы получить более подробный вид. - Frame - + MESSAGE OVERVIEW + ОБЗОР СООБЩЕНИЯ - Send To: - Получатель: + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Poppins'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8.25pt;">A list of icoming and outgoing messages for this wallet. </span></p></body></html> + Список исходящих и исходящих сообщений для этого кошелька. - ... - + Connection + соединение - Message - Сообщение + Custom Remote Node + Пользовательская удаленная нода - Block height - Высота блока + Built-in Node + Локальная нода - Amount - Сумма + Automatic Remote Node + Автоматическая удаленная нода - Transaction hash - Хэш транзакции + Set connection type + Настройки подключения - Message size (bytes) - Размер сообщения (в битах) + SAVE + СОХРАНИТЬ - Reply - Ответить + Optimization + Оптимизация - Save to file - Сохранить в файл + Auto optimization + Авто Оптимизация - << + Website - >> + Web Wallet - Ok - Ок + Click to Copy + - Frame + Settings - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + Show QR Code - MESSAGES - СООБЩЕНИЯ + Lock Wallet + Замок кошелек - NEW MESSAGE - НОВОЕ СООБЩЕНИЕ + Large transactions + Большие транзакции - BACK - НАЗАД + OPTIMIZE + ОПТИМИЗИРОВАТЬ - Frame + START - MINING - МАЙНИНГ + Rescan wallet + Сбросить кошелек - Select a mining pool - Выберите пул для майнинга + ENABLE + Включи - Number of CPU cores - Количество процессорных ядер + OPTIMIZE NOW + ОПТИМИЗИРОВАТЬ - ADD MINING POOL - + START RESCAN + Сбросить кошелек - Mining status : - Статус майнинга : + (Optimization not required) + (Оптимизация не требуется) - Stopped - Остановлен + Font + - START MINING - НАЧАТЬ МАЙНИНГ + Preferences + предпочтения - PAUSE MINING - ПРИОСТАНОВИТЬ МАЙНИНГ + Start Maximized + - BACK - НАЗАД + Font Size + - New address - Новый адрес + Close to tray + Закрывать в трей - NEW ADDRESS BOOK ENTRY - ДОБАВИТЬ В АДРЕСНУЮ КНИГУ + Language + язык - LABEL - ЯРЛЫК + Currency + валюта - ADDRESS - АДРЕС + Chinese + китайский язык - PAYMENT ID - ИДЕНТИФИКАТОР ТРАНЗАКЦИИ + English + Английский - ADD - ДОБАВИТЬ + Russian + Русский - CANCEL - ОТМЕНИТЬ + Turkish + Турецкий - New remote node - Новая удаленная нода + French + Французский - Host - Хост + Import Wallet + Импортировать кошелек - OK - ОК + IMPORT TRACKING WALLET + ИМПОРТ СМОТРЕТЬ КОШЕЛЕК - CLOSE - ЗАКРЫТЬ + IMPORT PRIVATE KEYS + ИМПОРТИРОВАТЬ СЕКРЕТНЫЕ КЛЮЧИ - Add Remote Node - Добавить удаленную ноду + Minimize to tray + Сворачивать в трей - Enter password - Введите пароль + Wallet Operations + - New Password - Новый пароль + New/Existing + - Confirm Password - Подтвердить пароль + NEW WALLET + - Password not confirmed - Пароль не подтвержден + Import + ИМПОРТИРОВАТЬ - SAVE - СОХРАНИТЬ + IMPORT SEED + ИМПОРТИРОВАТЬ МНЕМОНИЧЕСКУЮ ФРАЗУ - CLOSE - ЗАКРЫТЬ + New or Existing Wallet + Новый или существующий кошелек - New pool - Новый пул + CREATE NEW WALLET + НОВЫЙ КОШЕЛЕК - Host: - Хост: + OPEN EXISTING WALLET + ОТКРЫТЬ СУЩЕСТВУЮЩИЙ КОШЕЛЕК - Port: - Порт: + ENCRYPT WALLET + ЗАШИФРОВАТЬ КОШЕЛЕК - CANCEL - ОТМЕНИТЬ + Backup + копия - OK - ОК + BACKUP KEYS + РЕЗЕРВНЫЕ КЛЮЧИ - Connection Settings - Настройки подключения + BACKUP WALLET FILE + СДЕЛАТЬ ЗАПАСНУЮ КОПИЮ КОШЕЛЬКА <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:15px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:15px;">By default your wallet will connect using the built-in node, helping with decentralisation. You can also use a remote node if you dont want to download the entire blockchain.Please note that some remote nodes will have fees when sending transactions.</span></p></body></html> +</style></head><body style=" font-family:'Poppins'; font-size:16px; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost.</span></p></body></html> + Пожалуйста, убедитесь, что адрес и идентификатор платежа (если включены) верны перед отправкой. Средства, отправленные не по адресу, будут потеряны. + + + Payment ID (Optional) - Required at some Exchanges - Custom Remote Node - Пользовательская удаленная нода + Message (Optional) + - Built-in Node - Локальная нода + Save to Address Book + Сохранить в адресной книге - CLOSE - ЗАКРЫТЬ + Amount + Сумма + + + Address + Адрес + + + SEND + ОТПРАВИТЬ + + + CANCEL + ОТМЕНИТЬ + + + CLEAR + ЧИСТО - SAVE - СОХРАНИТЬ + Do not include message in blockchain + Не включайте сообщение в блокчейн - Automatic Remote Node - Автоматическая удаленная нода + Set self destruct time + Установить время на автоуничтожение - Frame + COPY PAYMENT ID - Banking - Банк + NEW CONTACT + - Messages - Сообщение + HELP DESK + - About - Информация + DONATION + - Transactions - Транзакции + Quarter + - Settings - Настройки + Half + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:12px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; line-height:160%;"><span style=" font-size:13px;">statusBox</span></p></body></html> + All - Wallet - Кошелек + Send + - First + Cancel - Second + Clear All - Third + <html><head/><body><p><span style=" font-weight:600;">ABOUT CONCEAL</span></p><p>Conceal.Network is a decentralized blockchain bank, with deposits and investments paying interest rates, without involvement of financial institutions, powered by 100% open source code. Conceal.Network enables untraceable and anonymous messaging, and a secure way to transfer funds. Using a distributed public ledger, the sender and receiver are kept anonymous.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">https://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> - Fourth + ABOUT CONCEAL DESKTOP - Fifth + This software is using Qt - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + This software is using QtCharts - Sixth + LICENSE AND SOURCE CODE - RECENT TRANSACTIONS - ПОСЛЕДНИЕ ТРАНЗАКЦИИ + This is your transaction history. It is a list of all incoming and outgoing transactions, deposits, and optimizations. If there are any discrepancies, please do a rescan of your wallet to purge any failed transactions from the list. Double-click individual entries to get a more detailed view. + - Pending - Ожидание + Clear + - Available - Доступно + Note: Maximum message size is 260 characters. + Примечание. Максимальный размер сообщения составляет 260 символов. - FUNDS - СРЕДСТВА + Refresh data + - DEPOSITS - ДЕПОЗИТЫ + BUY/MARKETS + - Locked - Заблокировано + TOOLS + - Withdrawable - Доступно к выводу + sm + - CONCEAL.NETWORK - МОЙ КОШЕЛЕК CONCEAL + Wiki + - currentWallet - СИНХРОНИЗАЦИЯ + COMMUNITY + - SEND - ОТПРАВИТЬ + Withdraw Deposit + - BANKING - БАНКОВСКИЕ ОПЕРАЦИИ + NEW DEPOSIT + НОВЫЙ ДЕПОЗИТ - MESSAGE - СООБЩЕНИЕ + How long should your deposit last? + Как долго должен длиться ваш депозит? - INVESTMENTS - ИНВЕСТИЦИИ + Auto refresh data + - CCX - + Status + Статус - VOLUME - ОБЪЕМ + How much do you want to deposit? + Сколько вы хотите внести? - MARKETCAP - КАПИТАЛИЗАЦИЯ + Deposit Details + Информация о депозите - BTC - BTC + interestLabel + Ярлык инвестиции - WALLET ADDRESS - АДРЕС КОШЕЛЬКА + Interest rate: + Проценты: - ccx7VYYGA65jUCfVaeiaHeSN5cmZZcLbhMm1FbpLYpnPVuDKKpH3n3hMiosUCs7LiT1WLrGx8nfZkeETox622EGt4ky2GihVZ8 - + Rewards you will earn: + Награды вы заработаете: - MARKET INFORMATION - РЫНОЧНАЯ ИНФОРМАЦИЯ + Fees for this deposit: + Плата за этот депозит: - Enter password - Введите пароль + Length on the blockchain: + Длина на блокчейне: - CONTINUE - ПРОДОЛЖИТЬ + MAKE DEPOSIT + НОВЫЙ ДЕПОЗИТ - Incorrect Password - Неверный пароль + DEPOSIT HISTORY + ИСТОРИЧЕСКИЕ ДАННЫЕ - Please Enter Your Password For Wallet - Пожалуйста, введите пароль от кошелька + WITHDRAW + ВЫВЕСТИ СРЕДСТВА - currentWallet - СИНХРОНИЗАЦИЯ + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Poppins'; font-size:13px; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8.25pt;">A complete history of all your deposits. Double-click an individual deposit for a more detailed view.</span></p></body></html> + Полная история всех ваших депозитов. Дважды щелкните отдельный депозит для более подробного просмотра. - blocks - блоки + CONCEAL.NETWORK + МОЙ КОШЕЛЕК CONCEAL - Error - Ошибка + YOUR CONTACT LIST + ВАШ КОНТАКТНЫЙ СПИСОК - Help - Помощь + COPY ADDRESS + КОПИРОВАТЬ АДРЕС - Fail - Ошибка + COPY PAYMENTID + КОПИРОВАТЬ PAYMENT ID - STARTING WALLET - ЗАГРУЗКА КОШЕЛЬКА + PAY TO + ПОЛУЧАТЕЛЬ СРЕДСТВ - Conceal Wallet Update - Обновить кошелек Conceal + EDIT CONTACT + РЕДАКТИРОВАТЬ - There is an update to the wallet available. -Would you like to go to the download page? - Доступно обновление для кошелька. -Хотите перейти на страницу загрузки? + DELETE CONTACT + УДАЛЯТЬ - Frame - + SEND MESSAGE + ОТПРАВИТЬ СООБЩЕНИЕ - WALLET SEED AND KEYS - КЛЮЧИ И МНЕМОНИЧЕСКАЯ ФРАЗА КОШЕЛЬКА + OPEN WALLET + - YOUR 25 WORD MNEMONIC SEED - ВАША 25-СОСТАВНАЯ МНЕМОНИЧЕСКАЯ ФРАЗА + Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost. + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:11pt;">Your wallet is an older format that does not support mnemonic seeds. Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet.</span></p></body></html> + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) - COPY - КОПИРОВАТЬ + EXPORT CSV + - BACK - НАЗАД + Message + Сообщение - COPY SPEND KEY - КОПИРОВАТЬ КЛЮЧ ДЛЯ ТРАТ (SPEND KEY) + PRICE + - PRIVATE SPEND KEY - ПРИВАТНЫЙ КЛЮЧ ДЛЯ ТРАТ + 24 HOUR CHANGE + - PRIVATE VIEW KEY - ПРИВАТНЫЙ КЛЮЧ ДЛЯ ПРОСМОТРА (PRIVATE VIEW KEY) + Pending + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier'; font-size:10pt;">private spend key goes here</span></p></body></html> + GitHub - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier'; font-size:10pt;">private view key goes here</span></p></body></html> + Market Place - COPY VIEW KEY - КОПИРОВАТЬ КЛЮЧ ДЛЯ ПРОСМОТРА (VIEW KEY) + TradeOgre + - ■ Keep your seed and password safe - ■ Убедитесь, что вашу мнемоническую фразу и пароль знаете только вы + A complete history of all your deposits. Double-click an individual deposit for a more detailed view. + - ■ Make a backup of your wallet file - ■ Сделайте запасную копию вашего кошелька + Make Deposit + - ■ Be aware of phishing websites and programs - ■ Опасайтесь фишинговых сайтов и программ + This wallet is locked. Please click below to unlock your wallet. + Этот кошелек заблокирован. Пожалуйста, нажмите ниже, чтобы разблокировать ваш кошелек. - ■ Store a copy of your seed in a safe place - ■ Храните копию вашей мнемонической фразы на безопасном носителе + UNLOCK WALLET + ОТКРЫТЬ - We care about your safety: Please read the following - Мы заботимся о вашей безопасности. Пожалуйста, прочитайте следующую информацию + Current Wallet + - SHOW SEED - ПОКАЗАТЬ МНЕМОНИЧЕСКУЮ ФРАЗУ + Portfolio (CCX) + - private keys - приватные ключи + HEIGHT + Высота - gui key - ключ GUI + A list of incoming and outgoing messages for this wallet. + - advanced users: - продвинутые пользователи: + Portfolio (USD) + - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + Current Height - YOUR GUI KEY - ВАШ КЛЮЧ GUI + Enter password + Введите пароль - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:17px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:11pt;">gui key goes here</span></p></body></html> + Type your password... - Frame - + CONTINUE + ПРОДОЛЖИТЬ - SEND FUNDS - ОТПРАВИТЬ СРЕДСТВА + Incorrect Password + Неверный пароль - BACK - НАЗАД + CANCEL + ОТМЕНИТЬ - PAYMENT ID (OPTIONAL) - ИДЕНТИФИКАТОР ТРАНЗАКЦИИ (НЕ ОБЯЗАТЕЛЬНО) + Please Enter Your Password + Введите пароль - ADDRESS - АДРЕС + currentWallet + СИНХРОНИЗАЦИЯ - LABEL - ЯРЛЫК + blocks + блоки - 0.000000 - + Error + Ошибка - AMOUNT - СУММА + Help + Помощь - AVAILABLE BALANCE - ДОСТУПНАЯ СУММА + Fail + Ошибка - CLEAR ALL - ОЧИСТИТЬ ВСЕ + %1 Wallet failed to start. +Check that port %2 is not already in use. + - FEE - КОМИССИЯ + STARTING WALLET + ЗАГРУЗКА КОШЕЛЬКА - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:9pt;">Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:9pt;">Пожалуйста, перед отправкой убедитесь в том, что адрес и идентификатор транзакции верны. В противном случае, средства будут утеряны..</span></p></body></html> + Conceal Wallet Update + Обновить кошелек Conceal - ADDRESS BOOK - АДРЕСНАЯ КНИГА + There is an update to the wallet available. +Would you like to go to the download page? + Доступно обновление для кошелька. +Хотите перейти на страницу загрузки? - NODE FEE - КОМИССИЯ НА ИСПОЛЬЗОВАНИЕ НОДЫ + Seed confirmation error + - CRYPTO MESSAGE (OPTIONAL) - СООБЩЕНИЕ (ПО ВЫБОРУ) + Conceal Desktop Update + - You can send an optional message along with your transfer. There is a 0.000010 CCX fee per character. - Вы можете отослать дополнительное сообщение вместе с вашим переводом. За каждый символ сообщения выплачивается комиссия в 0.000010 CCX. + There is an update available. +Would you like to go to the download page? + - Some exchanges and other services require that a Payment ID is included when sending funds. - Некоторые виды транзакций и иных услуг требуют наличия идентификатора транзакции при переводе средств. + WALLET KEY BACKUP + РЕЗЕРВНЫЕ КЛЮЧИ - Include a label if you want to save the recepient in your Address Book - Если вы хотите сохранить получателя в адресной книге, придумайте для него ярлык + YOUR 25 WORD MNEMONIC SEED + ВАША 25-СОСТАВНАЯ МНЕМОНИЧЕСКАЯ ФРАЗА - Please enter the receivers address - Пожалуйста, введите адрес получателя + COPY + КОПИРОВАТЬ - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - + BACK + НАЗАД - Frame - + COPY SPEND KEY + КОПИРОВАТЬ КЛЮЧ ДЛЯ ТРАТ (SPEND KEY) - Add "Reply To" - Добавить иной обратный адрес + PRIVATE SPEND KEY + ПРИВАТНЫЙ КЛЮЧ ДЛЯ ТРАТ - Do not include message in blockchain - Не включайте сообщение в блокчейн + private spend key goes here + - Set self destruct time - Установить время на автоуничтожение + PRIVATE VIEW KEY + ПРИВАТНЫЙ КЛЮЧ ДЛЯ ПРОСМОТРА (PRIVATE VIEW KEY) - ttl + private view key goes here - FEE - КОМИССИЯ + COPY VIEW KEY + КОПИРОВАТЬ КЛЮЧ ДЛЯ ПРОСМОТРА (VIEW KEY) - SEND MESSAGE - ОТПРАВИТЬ СООБЩЕНИЕ + ■ Keep your seed and password safe + ■ Убедитесь, что вашу мнемоническую фразу и пароль знаете только вы - BACK - НАЗАД + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'monospace'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tracking key goes here</p></body></html> + - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + Wallet Key Backup - Please enter the receivers address - Пожалуйста, введите адрес получателя + ■ Make a backup of your wallet file + ■ Сделайте запасную копию вашего кошелька - ADDRESS - АДРЕС + ■ Be aware of phishing websites and programs + ■ Опасайтесь фишинговых сайтов и программ - Enter your encrypted message - Введите ваше зашифрованное сообщение + ■ Store a copy of your seed in a safe place + ■ Храните копию вашей мнемонической фразы на безопасном носителе - MESSAGE - СООБЩЕНИЕ + We care about your safety: Please read the following + Мы заботимся о вашей безопасности. Пожалуйста, прочитайте следующую информацию - ADDRESS BOOK - АДРЕСНАЯ КНИГА + SHOW SEED + ПОКАЗАТЬ МНЕМОНИЧЕСКУЮ ФРАЗУ - NODE FEE - КОМИССИЯ НА ИСПОЛЬЗОВАНИЕ НОДЫ + PRIVATE KEYS + - Walllet Address :: QR Code - Адрес кошелька: QR-код + TRACKING KEY + - Transaction details - Детали транзакции + Advanced Users: + - Transaction Details - Детали транзакции + Your wallet is an older format that does not support mnemonic seeds. +Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet. + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + YOUR TRACKING KEY - CLOSE - ЗАКРЫТЬ + Walllet Address :: QR Code + Адрес кошелька: QR-код - Frame + Wallet Address QR Code - TextLabel - Текстовый ярлык + Transaction details + Детали транзакции - Transaction History - История транзакций + TRANSACTION DETAILS + ДЕТАЛИ ТРАНЗАКЦИИ - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + Transaction Details - TRANSACTION HISTORY - ИСТОРИЯ ТРАНЗАКЦИЙ - - - EXPORT TO CSV - ПЕРЕВЕСТИ В CSV + CLOSE + ЗАКРЫТЬ - BACK - НАЗАД + TextLabel + Текстовый ярлык - Frame + Transaction @@ -1375,10 +1450,6 @@ p, li { white-space: pre-wrap; } Enter a label for this address to add it to your address book Введите ярлык для этого адреса, чтобы добавить его в свою адресную книгу - - ... - - Label Ярлык @@ -1399,17 +1470,13 @@ p, li { white-space: pre-wrap; } Unable to check for update Сервер обновлений недоступен - - The Conceal Wallet - Кошелек Conceal - Invalid address Неверный адрес - Empty label - Пустой ярлык + Invalid payment ID + Неверный идентификатор транзакции Label @@ -1423,33 +1490,13 @@ p, li { white-space: pre-wrap; } Payment ID Идентификатор транзакции - - ENABLE - Включи - - - DISABLE - ВЫКЛЮЧИ - - - Language settings saved - Язык сохранен - - - Please restart the wallet for the new settings to take effect. - Для вступления в силу изменений пожалуйста перезапустите кошелек. - - - Connection settings saved - Настойки подключения сохранены - Password not confirmed Пароль не подтвержден Used to deploy test nets. Checkpoints and hardcoded seeds are ignored, network id is changed. Use it with –data-dir flag. The wallet must be launched with –testnet flag - Используется для запуска тестировочных сетей. Чекпоинты и жестко запрограмированные сид-фразы игнорируются, ID сети меняется. Используйте данную опцию с параметром –data-dir. Кошелек должен запускаться с параметром –testnet. + Используется для запуска тестировочных сетей. Чекпоинты и жестко запрограмированные сид-фразы игнорируются, ID сети меняется. Используйте данную опцию с параметром –data-dir. Кошелек должен запускаться с параметром –testnet Interface for p2p network protocol @@ -1471,6 +1518,10 @@ p, li { white-space: pre-wrap; } xternal port for p2p network protocol (if port forwarding used with NAT) Внешний порт для протокола P2P-сети (если вы используете переадресацию портов с NAT) + + External port for p2p network protocol (if port forwarding used with NAT) + + Allow local ip add to peer list, mostly in debug purposes Разрешить добавлять в список пиров локальные IP-адреса (функция для отладки) @@ -1515,6 +1566,30 @@ p, li { white-space: pre-wrap; } Run application in minimized mode Запустить приложение в свернутом режиме + + Conceal Desktop + + + + New Contact + + + + Edit Contact + + + + Invalid address + Неверный адрес + + + Invalid payment ID + Неверный идентификатор транзакции + + + Contact with such label already exists. + + Status Статус @@ -1588,48 +1663,56 @@ p, li { white-space: pre-wrap; } Потрачено - Weeks - Недели + Wallet file + Файл кошелька - Quarters - Кварталы + Wallets (*.wallet) + Кошельки (*.wallet) - %1 %2 - + Wallet file + Файл кошелька - %1 + 0.001 (Node Fee) %2 - + Wallets (*.wallet) + Кошельки (*.wallet) + + + Wallet file + Файл кошелька - New deposits only work after height 108,000 - Новые депозиты работают только после высоты блока 108,000 + Wallets (*.wallet) + Кошельки (*.wallet) - You don't have enough balance in your account! - На вашем аккаунте недостаточно средств! + Private Spend Key is not valid. The private spend key you entered is not valid. + - Deposit Confirmation - Подтверждение депозита + Private View Key is not valid. The private view key you entered is not valid. + - Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? - Пожалуйста, учтите, что после того, как средства были внесены на депозит, у вас не будет к ним доступа до истечения срока депозита. Вы уверены, что хотите продолжить? + The wallet file already exists. Please change the wallet path and try again. + + + + Key is not valid. The private spend key you entered is not valid. + - New investments only work after height 108,000 - Новые инвестиции работают только после высоты блока 108,000 + Key is not valid. The private view key you entered is not valid. + - Investment Confirmation - Подтверждение инвестиции + Wallet file + Файл кошелька - Please note that once funds are locked in an investment, you will not have access to those funds until maturity. Are you sure you want to proceed? - Пожалуйста, учтите, что после того, как средства были инвестированы, у вас не будет к ним доступа до истечения срока инвестиции. Вы уверены, что хотите продолжить? + Wallets (*.wallet) + Кошельки (*.wallet) Wallet file @@ -1639,6 +1722,18 @@ p, li { white-space: pre-wrap; } Wallets (*.wallet) Кошельки (*.wallet) + + Invalid seed. Seed phrase is not 25 words! Please try again. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Invalid seed. Please check your seed and try again. + + Wallet file Файл кошелька @@ -1655,6 +1750,34 @@ p, li { white-space: pre-wrap; } Wallets (*.wallet) Кошельки (*.wallet) + + Tracking key is not valid. The tracking key you entered is not valid. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Key is not valid. The public spend key you entered is not valid. + + + + Key is not valid. The public view key you entered is not valid. + + + + Key is not valid. The private spend key you entered is not valid. + + + + Key is not valid. The private view key you entered is not valid. + + + + Conceal Desktop %1 + + About %1 Wallet О кошельке %1 @@ -1679,6 +1802,14 @@ p, li { white-space: pre-wrap; } Open .wallet/.keys file Открыть файлы .wallet/.keys + + Show + + + + Quit Conceal Desktop + + Wallet (*.wallet *.keys) Кошелек (*.wallet *.keys) @@ -1694,7 +1825,8 @@ p, li { white-space: pre-wrap; } Your wallet will be reset and restored from blockchain. Are you sure? - Ваш кошелек будет сброшен и восстановлен из блокчейна. Вы уверены? + Ваш кошелек будет сброшен и восстановлен из блокчейна. +Вы уверены? Wallet error @@ -1732,18 +1864,6 @@ Are you sure? The private view key you entered is not valid. Введенный вами приватный ключ для просмотра (Private View Key) неверен. - - Conection settings saved - Настойки подключения сохранены - - - Please restart the wallet for the new settings to take effect. - Для вступления в силу изменений пожалуйста перезапустите кошелек. - - - Language settings saved - Язык сохранен - Save message Сохранить сообщение @@ -1757,144 +1877,283 @@ Are you sure? Внимание! Файл уже существует и будет перезаписан, вы уверены? - File error - Ошибка файла + File error + Ошибка файла + + + Date + Дата + + + Type + Тип + + + Height + Высота + + + Message + Сообщение + + + Transaction Hash + Хэш транзакции + + + Message Size + + + + Transaction hash + Хэш транзакции + + + Amount + Сумма + + + Message size + Длина сообщения + + + Out + Исходящие транзакции + + + In + Входящие транзакции + + + Password not confirmed + Пароль не подтвержден + + + &Pay to + Получатель средств + + + Copy &address + Скопировать адрес + + + Copy Payment &ID + Скопировать paymentID + + + &Edit + редактировать + + + &Delete + удалять + + + Month(s) + + + + CLICK TO DISABLE + DISABLE + + + CLICK TO ENABLE + ВКЛЮЧИТЬ + + + Tracking Wallet + Смотреть Кошелек + + + Wallet + Кошелек + + + Synchronization + Синхронизация + + + Failed to lookup Conceal ID + Поиск не удался + + + Could not check Conceal ID + + + + Invalid recipient address + Неверный адрес получателя + + + Invalid payment ID + Неверный идентификатор транзакции + + + Transaction Confirmation + Подтверждение транзакции + + + Please note that there is no payment ID, are you sure you want to proceed? + Отсутствует идентификатор транзакции, вы уверены, что хотите продолжить? + + + Insufficient funds. Please ensure that you have enough funds for the amount plus fees. + Недостаточно средств. Пожалуйста, убедитесь, что у вас достаточно средств на сумму плюс сборы. + + + Message too long. Please ensure that the message is less than 260 characters. + Сообщение слишком длинное. Пожалуйста, убедитесь, что сообщение содержит не более 260 символов. + + + You don't have enough balance in your account! + На вашем аккаунте недостаточно средств! + + + Deposit Confirmation + Подтверждение депозита - Date - Дата + Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? + Пожалуйста, учтите, что после того, как средства были внесены на депозит, у вас не будет к ним доступа до истечения срока депозита. Вы уверены, что хотите продолжить? - Type - Тип + Auto Optimization + Авто Оптимизация - Height - Высота + Data updated + - Message - Сообщение + Market data from coingecko.com - Last updated: %1 + - Transaction hash - Хэш транзакции + Portfolio ( + - Amount - Сумма + Available Balance: + - Message size - Длина сообщения + This is a tracking wallet. +This action is not available. + - Out - Исходящие транзакции + BANKING + БАНКОВСКИЕ ОПЕРАЦИИ - In - Входящие транзакции + TRANSACTIONS + ТРАНЗАКЦИИ - Password not confirmed - Пароль не подтвержден + CONCEAL.NETWORK + МОЙ КОШЕЛЕК CONCEAL - Node URL - URL-адрес ноды + ABOUT + ОКОЛО - SYNCHRONIZING - СИНХРОНИЗАЦИЯ + WALLET SETTINGS + - About Conceal + INBOX - About QT - + SEND FUNDS + ОТПРАВИТЬ СРЕДСТВА - Disclaimer - Правовое уведомление + NEW MESSAGE + НОВОЕ СООБЩЕНИЕ - Links - Ссылки + Address copied to clipboard + - Import Seed - Импортировать Мнемоническую Фразу + Synchronization is in progress. +This option is not available until your wallet is synchronized with the network. + - Import Secret Keys - Импортировать секретные ключи + SEND MESSAGE + ОТПРАВИТЬ СООБЩЕНИЕ - Import GUI Key - Импортировать ключ GUI + ADDRESS BOOK + АДРЕСНАЯ КНИГА - Open Wallet - Открыть кошелек + Warning: you have reached the maximum message size of 260 characters. + - Create Wallet - Создать кошелек + Auto optimization disabled + - Backup Wallet - Сделать запасную копию кошелька + Auto optimization enabled. +Your wallet will be optimized automatically every 15 minutes. + - Import Wallet - Импортировать кошелек + Language and Currency settings saved + Настройки языка и валюты сохранены - Close Wallet - Закрыть Кошелек + Please restart the wallet for the new settings to take effect. + Для вступления в силу изменений пожалуйста перезапустите кошелек. - Encrypt Wallet - Зашифровать кошелек + Connection settings saved + Настойки подключения сохранены - Change Password - Сменить пароль + Invalid address + Неверный адрес - Close to Tray On - Закрывать в трей - On + Edit contact + РЕДАКТИРОВАТЬ - Close to Tray Off - Закрывать в трей - Off + Payment ID copied to clipboard + - Minimize to Tray On - Сворачивать в трей - On + Address Book + Адресная книга - Minimize to Tray Off - Сворачивать в трей - Off + Incorrect password + Неверный пароль - Wallet - Кошелек + Wrong password. + Неверный пароль. - Synchronization - Синхронизация + Lock Wallet + Замок кошелек - Pool URL - URL пула + Would you like to lock your wallet? While your wallet is locked, it will continue to synchronize with the network. You will need to enter your wallet password to unlock it. + Хотите заблокировать свой кошелек? Пока ваш кошелек заблокирован, он продолжит синхронизацию с сетью. Вам нужно будет ввести пароль своего кошелька, чтобы разблокировать его. - GUI Key - Ключ GUI + Select CSV file + + + + Tracking Key + Ключ для отслеживания транзакции (Tracking Key) Private Spend-Key @@ -1909,72 +2168,64 @@ Are you sure? Мнемоническая фраза - Failed to lookup Conceal ID - Поиск не удался - - - Invalid recipient address - Неверный адрес получателя - - - Invalid payment ID - Неверный идентификатор транзакции + New Block + - Transaction Confirmation - Подтверждение транзакции + Deposit Unlock + - Please note that there is no payment ID, are you sure you want to proceed? - Отсутствует идентификатор транзакции, вы уверены, что хотите продолжить? + Incoming TX + - Incorrect fee value - Некорректная сумма комиссии + Outgoing TX + - Incorrect fee - Некорректная комиссия + Optimization + Оптимизация - Select CSV file - Выберите файл CSV + New Deposit + - DATE - ДАТА + Date + Дата - TYPE - ТИП + Type + Тип - ADDRESS - АДРЕС + Address + Адрес - AMOUNT - СУММА + Amount + Сумма - FEE - КОМИССИЯ + Fee + Комиссия - HEIGHT - ВЫСОТА + Height + Высота - PAYMENT ID - ИДЕНТИФИКАТОР ТРАНЗАКЦИИ + Payment ID + Идентификатор транзакции - MESSAGE - СООБЩЕНИЕ + Message + Сообщение - HASH - ХЭШ + Transaction Hash + Хэш транзакции unconfirmed @@ -1984,10 +2235,6 @@ Are you sure? confirmations подтверждения - - %1 / %2 - - me (%1) я (%1) @@ -1996,6 +2243,18 @@ Are you sure? (n/a) + + Unconfirmed + + + + Confirmed + + + + not found + + Importing keys Импортирование ключей @@ -2008,6 +2267,50 @@ Are you sure? SENDING TRANSACTION Идет отправка + + Opening wallet + Открытие кошелька + + + Creating wallet + Создание кошелька + + + Sending transaction + Отправка транзакции + + + Optimizing wallet + Оптимизация кошелька + + + Sending message + Отправка сообщения + + + Creating deposit + Создание депозита + + + Withdrawing deposit + Вывод депозита + + + Ready + Готово + + + Synchronizing + Синхронизация + + + Synchronized + Синхронизировано + + + Warning + Внимание + Optimizing Оптимизация @@ -2025,7 +2328,7 @@ Are you sure? Вывод средств - Ready + READY Готово @@ -2053,7 +2356,28 @@ Are you sure? Была Проблема. Пожалуйста Перезапустите Кошелек. - <span style='color: orange;'>%1</span><br />Height: %2<br />%4<br />%3 + Unable to create the wallet. + + + + Unable to create a new wallet at the path provided. +Please choose another location. + + + + New wallet file + Новый файл кошелька + + + Wallets (*.wallet) + Кошельки (*.wallet) + + + You must confirm that you have safely stored the mnemonic seed and understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + + + The words entered does not match the seed. Please try again. @@ -2072,6 +2396,70 @@ Are you sure? WELCOME TO THE CONCEAL WALLET Добро пожаловать в кошелек Conceal + + Create a new wallet address along with a secret seed phrase + + + + Already have a wallet? open the wallet and access your assets + + + + Import an existing wallet with the secret seed phrase and access your CCX + + + + Advanced users can import using other keys + + + + Create a new wallet + + + + Wallet Path + Путь к файлу кошелька + + + Where would you like to save your wallet? + + + + Choose a path where you would like to save your wallet. + + + + BACK + НАЗАД + + + Mnemonic seed + + + + Please save the following mnemonic seed safely, it is used to recover your wallet (or import it on another machine). + + + + Don't lose your seed or you might lose your wallet (and funds) forever. + + + + Copy seed + + + + Mnemonic seed confirmation + + + + Enter your seed to confirm you have saved it. + + + + I have safely stored the mnemonic seed and I understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + ■ Conceal is a decentralized blockchain bank. ■ Conceal - это децентрализованный блокчейн-банк. @@ -2088,16 +2476,16 @@ Are you sure? ■ You control the private keys to your funds. ■ Вы контролируете приватные ключи, открывающие доступ к вашим средствам. - - The Conceal Wallet - Кошелек Conceal - NEXT ДАЛЕЕ - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + ■ Conceal Desktop is a free, open-source interface. + + + + How does Conceal Desktop work? @@ -2108,6 +2496,10 @@ Are you sure? a seed, and a wallet address. мнемоническую фразу и адрес кошелька. + + TextLabel + Текстовый ярлык + ■ If you send your public address to someone then they can send you CCX. ■ Зная ваш адрес, любой пользователь может переводить вам CCX. @@ -2164,13 +2556,17 @@ Are you sure? Getting Started Начало работы + + WELCOME TO CONCEAL DESKTOP + + CREATE NEW WALLET СОЗДАТЬ НОВЫЙ КОШЕЛЕК OPEN EXISTING WALLET - ОТКРЫТЬ СУЩЕСТВУЮЩИЙ КОШЕЛЕК + ОТКРЫТЫЙ БУМАЖНИК IMPORT PRIVATE KEYS @@ -2228,10 +2624,6 @@ Are you sure? Private View Key Приватный ключ для просмотра (Private View Key) - - ... - - CANCEL ОТМЕНИТЬ @@ -2256,14 +2648,6 @@ Are you sure? Optimize Wallet Оптимизировать кошелек - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:15px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:15px;">This process will optimize your wallet for large transactions. The optimization will take approximately 22 minutes. Please note that you will not be able to spend any of your funds until the optimization process is complete. In some cases, the wallet might need optimization more than once.</span></p></body></html> - - Optimization recommended for this wallet Для данного кошелька рекомендуется оптимизация diff --git a/src/languages/ru.ts b/src/languages/ru.ts index 3a7ed2f7..d54e5f17 100644 --- a/src/languages/ru.ts +++ b/src/languages/ru.ts @@ -779,7 +779,7 @@ Please wait... - + NEW MESSAGE НОВОЕ СООБЩЕНИЕ @@ -788,22 +788,22 @@ Please wait... СВЯЗАТЬСЯ С НАМИ - + Discord - + Telegram - + Twitter - + Medium @@ -860,7 +860,7 @@ p, li { white-space: pre-wrap; } Это ваша история транзакций. Это список всех входящих и исходящих транзакций, депозитов и оптимизаций. Если есть какие-либо неточности, пожалуйста, сделайте повторную проверку вашего кошелька, чтобы удалить все неудачные транзакции из списка. Дважды щелкните отдельные объекты, чтобы получить более подробный вид. - + MESSAGE OVERVIEW ОБЗОР СООБЩЕНИЯ @@ -873,97 +873,102 @@ p, li { white-space: pre-wrap; } Список исходящих и исходящих сообщений для этого кошелька. - + Connection соединение - + Custom Remote Node Пользовательская удаленная нода - + Built-in Node Локальная нода - + Automatic Remote Node Автоматическая удаленная нода - + Set connection type Настройки подключения - - + + SAVE СОХРАНИТЬ - + Optimization Оптимизация - + Auto optimization Авто Оптимизация - + Website - + + Web Wallet + + + + Click to Copy - + Settings - + Show QR Code - + Lock Wallet Замок кошелек - + Large transactions Большие транзакции - + OPTIMIZE ОПТИМИЗИРОВАТЬ - + START - + Rescan wallet Сбросить кошелек - - - - - + + + + + ENABLE Включи @@ -976,106 +981,111 @@ p, li { white-space: pre-wrap; } Сбросить кошелек - + (Optimization not required) (Оптимизация не требуется) - + Font - + Preferences предпочтения - + Start Maximized - + Font Size - + Close to tray Закрывать в трей - + Language язык - + Currency валюта - + Chinese китайский язык - + English Английский - + Russian Русский - + Turkish Турецкий + + + French + Французский + Import Wallet Импортировать кошелек - + IMPORT TRACKING WALLET ИМПОРТ СМОТРЕТЬ КОШЕЛЕК - + IMPORT PRIVATE KEYS ИМПОРТИРОВАТЬ СЕКРЕТНЫЕ КЛЮЧИ - + Minimize to tray Сворачивать в трей - + Wallet Operations - + New/Existing - + NEW WALLET - + Import ИМПОРТИРОВАТЬ - + IMPORT SEED ИМПОРТИРОВАТЬ МНЕМОНИЧЕСКУЮ ФРАЗУ @@ -1092,22 +1102,22 @@ p, li { white-space: pre-wrap; } ОТКРЫТЬ СУЩЕСТВУЮЩИЙ КОШЕЛЕК - + ENCRYPT WALLET ЗАШИФРОВАТЬ КОШЕЛЕК - + Backup копия - + BACKUP KEYS РЕЗЕРВНЫЕ КЛЮЧИ - + BACKUP WALLET FILE СДЕЛАТЬ ЗАПАСНУЮ КОПИЮ КОШЕЛЬКА @@ -1266,65 +1276,70 @@ p, li { white-space: pre-wrap; } - - - - - - - - - - sm + + BUY/MARKETS - - BitMart + + TOOLS + + + + + + + + + + + + + sm - + Wiki - + COMMUNITY - + Withdraw Deposit - + NEW DEPOSIT НОВЫЙ ДЕПОЗИТ - + How long should your deposit last? Как долго должен длиться ваш депозит? - + Auto refresh data - + Status Статус - + How much do you want to deposit? Сколько вы хотите внести? - + Deposit Details Информация о депозите @@ -1333,22 +1348,22 @@ p, li { white-space: pre-wrap; } Ярлык инвестиции - + Interest rate: Проценты: - + Rewards you will earn: Награды вы заработаете: - + Fees for this deposit: Плата за этот депозит: - + Length on the blockchain: Длина на блокчейне: @@ -1357,7 +1372,7 @@ p, li { white-space: pre-wrap; } НОВЫЙ ДЕПОЗИТ - + DEPOSIT HISTORY ИСТОРИЧЕСКИЕ ДАННЫЕ @@ -1374,7 +1389,7 @@ p, li { white-space: pre-wrap; } Полная история всех ваших депозитов. Дважды щелкните отдельный депозит для более подробного просмотра. - + CONCEAL.NETWORK МОЙ КОШЕЛЕК CONCEAL @@ -1414,7 +1429,7 @@ p, li { white-space: pre-wrap; } - + OPEN WALLET @@ -1454,47 +1469,47 @@ p, li { white-space: pre-wrap; } - + GitHub - + Market Place - + TradeOgre - + A complete history of all your deposits. Double-click an individual deposit for a more detailed view. - + Make Deposit - + This wallet is locked. Please click below to unlock your wallet. Этот кошелек заблокирован. Пожалуйста, нажмите ниже, чтобы разблокировать ваш кошелек. - + UNLOCK WALLET ОТКРЫТЬ - + Current Wallet - + Portfolio (CCX) @@ -1503,17 +1518,17 @@ p, li { white-space: pre-wrap; } Высота - + A list of incoming and outgoing messages for this wallet. - + Portfolio (USD) - + Current Height @@ -1558,15 +1573,15 @@ p, li { white-space: pre-wrap; } QObject - + blocks блоки + - Error Ошибка @@ -1588,7 +1603,7 @@ Check that port %2 is not already in use. - + STARTING WALLET ЗАГРУЗКА КОШЕЛЬКА @@ -1608,12 +1623,12 @@ Would you like to go to the download page? - + Conceal Desktop Update - + There is an update available. Would you like to go to the download page? @@ -1818,7 +1833,7 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans Updater - + Error: %1 Ошибка: %1 @@ -1841,17 +1856,17 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::AddressBookModel - + Label Ярлык - + Address Адрес - + Payment ID Идентификатор транзакции @@ -1867,28 +1882,28 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::CommandLineParser - + Used to deploy test nets. Checkpoints and hardcoded seeds are ignored, network id is changed. Use it with –data-dir flag. The wallet must be launched with –testnet flag Используется для запуска тестировочных сетей. Чекпоинты и жестко запрограмированные сид-фразы игнорируются, ID сети меняется. Используйте данную опцию с параметром –data-dir. Кошелек должен запускаться с параметром –testnet - + Interface for p2p network protocol Интерфейс протокола P2P-сети - + ip IP - + Port for p2p network protocol Порт для протокола P2P-сети - - + + port порт @@ -1897,69 +1912,69 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans Внешний порт для протокола P2P-сети (если вы используете переадресацию портов с NAT) - + External port for p2p network protocol (if port forwarding used with NAT) - + Allow local ip add to peer list, mostly in debug purposes Разрешить добавлять в список пиров локальные IP-адреса (функция для отладки) - + Manually add peer to local peerlist Вручную добавить пира в локальный список пиров - + peer пир - + Specify list of peers to connect to and attempt to keep the connection open Выберите пиров, с которыми нужно установить и поддерживать активное подключение - - + + node нода - + Specify list of peers to connect to only. If this option is given the options add-priority-node and seed-node are ignored Выберите пиров, к которым нужно присоединиться, не поддерживая активное подключение. Если выбрана эта опция, опции "Добавить приоритетную ноду" и "Сид-ноды" игнорируются - + Connect to a node to retrieve peer addresses, and disconnect Подключитесь к ноде чтобы получить список адресов пиров, а затем отключитесь - + Do not announce yourself as peerlist candidate Не заявляйте себя в качестве кандидата в список пиров - + Specify data directory Выберите директорию - + directory директория - + Run application in minimized mode Запустить приложение в свернутом режиме - + Conceal Desktop @@ -1995,92 +2010,92 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::DepositModel - + Status Статус - + Amount Сумма - + Interest Проценты - + Sum Сумма - + Rate Процент - + Term Срок - + Unlock height Разблокировать высоту блока - + Unlock time Разбокировать время - + Creating transaction Создание транзакции - + Creating height Создание высоты - + Creating time Создание времени - + Spending transaction Транзакция расходования - + Spending height Высота расходования - + Spending time Время расходования - + Type Тип - + Locked Заблокировано - + Unlocked Разблокировано - + Spent Потрачено @@ -2267,54 +2282,54 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans Новый файл кошелька - + Wallets (*.wallet) Кошельки (*.wallet) - + Open .wallet/.keys file Открыть файлы .wallet/.keys - + Show - + Quit Conceal Desktop - + Wallet (*.wallet *.keys) Кошелек (*.wallet *.keys) - + Backup wallet to... Сделать запасную копию кошелька в... - + Warning Внимание - + Your wallet will be reset and restored from blockchain. Are you sure? Ваш кошелек будет сброшен и восстановлен из блокчейна. Вы уверены? - + Wallet error Ошибка кошелька - + Wallet Кошелек @@ -2373,32 +2388,32 @@ Are you sure? WalletGui::MessagesModel - + Date Дата - + Type Тип - + Height Высота - + Message Сообщение - + Transaction Hash Хэш транзакции - + Message Size @@ -2407,7 +2422,7 @@ Are you sure? Хэш транзакции - + Amount Сумма @@ -2416,12 +2431,12 @@ Are you sure? Длина сообщения - + Out Исходящие транзакции - + In Входящие транзакции @@ -2462,30 +2477,30 @@ Are you sure? - - - - - - - - - - + + + + + + + + + + CLICK TO DISABLE DISABLE - - - - - - - - - - + + + + + + + + + + CLICK TO ENABLE ВКЛЮЧИТЬ @@ -2502,24 +2517,24 @@ Are you sure? Синхронизация - - + + Failed to lookup Conceal ID Поиск не удался - - + + Could not check Conceal ID - + Invalid recipient address Неверный адрес получателя - + Invalid payment ID Неверный идентификатор транзакции @@ -2532,27 +2547,27 @@ Are you sure? Отсутствует идентификатор транзакции, вы уверены, что хотите продолжить? - + Insufficient funds. Please ensure that you have enough funds for the amount plus fees. Недостаточно средств. Пожалуйста, убедитесь, что у вас достаточно средств на сумму плюс сборы. - + Message too long. Please ensure that the message is less than 260 characters. Сообщение слишком длинное. Пожалуйста, убедитесь, что сообщение содержит не более 260 символов. - + You don't have enough balance in your account! На вашем аккаунте недостаточно средств! - + Deposit Confirmation Подтверждение депозита - + Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? Пожалуйста, учтите, что после того, как средства были внесены на депозит, у вас не будет к ним доступа до истечения срока депозита. Вы уверены, что хотите продолжить? @@ -2561,72 +2576,72 @@ Are you sure? Авто Оптимизация - + Data updated - + Market data from coingecko.com - Last updated: %1 - + Portfolio ( - + Available Balance: - - - - - - - - - + + + + + + + + + This is a tracking wallet. This action is not available. - + BANKING БАНКОВСКИЕ ОПЕРАЦИИ - + TRANSACTIONS ТРАНЗАКЦИИ - + CONCEAL.NETWORK МОЙ КОШЕЛЕК CONCEAL - + ABOUT ОКОЛО - + WALLET SETTINGS - + INBOX - - + + SEND FUNDS ОТПРАВИТЬ СРЕДСТВА @@ -2635,57 +2650,57 @@ This action is not available. НОВОЕ СООБЩЕНИЕ - - + + Address copied to clipboard - + Synchronization is in progress. This option is not available until your wallet is synchronized with the network. - - + + SEND MESSAGE ОТПРАВИТЬ СООБЩЕНИЕ - + ADDRESS BOOK АДРЕСНАЯ КНИГА - + Warning: you have reached the maximum message size of 260 characters. - + Auto optimization disabled - + Auto optimization enabled. Your wallet will be optimized automatically every 15 minutes. - + Language and Currency settings saved Настройки языка и валюты сохранены - - + + Please restart the wallet for the new settings to take effect. Для вступления в силу изменений пожалуйста перезапустите кошелек. - + Connection settings saved Настойки подключения сохранены @@ -2698,7 +2713,7 @@ Your wallet will be optimized automatically every 15 minutes. РЕДАКТИРОВАТЬ - + Payment ID copied to clipboard @@ -2715,17 +2730,17 @@ Your wallet will be optimized automatically every 15 minutes. Неверный пароль. - + Lock Wallet Замок кошелек - + Would you like to lock your wallet? While your wallet is locked, it will continue to synchronize with the network. You will need to enter your wallet password to unlock it. Хотите заблокировать свой кошелек? Пока ваш кошелек заблокирован, он продолжит синхронизацию с сетью. Вам нужно будет ввести пароль своего кошелька, чтобы разблокировать его. - + Select CSV file @@ -2757,22 +2772,27 @@ Your wallet will be optimized automatically every 15 minutes. - + + Deposit Unlock + + + + Incoming TX - + Outgoing TX - + Optimization Оптимизация - + New Deposit @@ -2780,70 +2800,85 @@ Your wallet will be optimized automatically every 15 minutes. WalletGui::TransactionsModel - + Date Дата - + Type Тип - + Address Адрес - + Amount Сумма - + Fee Комиссия - + Height Высота - + Payment ID Идентификатор транзакции - + Message Сообщение - + Transaction Hash Хэш транзакции - + unconfirmed не подтвержден - + confirmations подтверждения - + me (%1) я (%1) - + (n/a) + + + Unconfirmed + + + + + Confirmed + + + + + not found + + WalletGui::WalletAdapter @@ -2862,61 +2897,61 @@ Your wallet will be optimized automatically every 15 minutes. Идет отправка - - Opening wallet - Открытие кошелька - - - - Creating wallet - Создание кошелька - - - - Sending transaction - Отправка транзакции - - - - Optimizing wallet - Оптимизация кошелька - - - - Sending message - Отправка сообщения - - - - Creating deposit - Создание депозита - - - - Withdrawing deposit - Вывод депозита - - - - - Ready - Готово - - - - Synchronizing - Синхронизация - - - - Synchronized - Синхронизировано - - - - Warning - Внимание - + + Opening wallet + Открытие кошелька + + + + Creating wallet + Создание кошелька + + + + Sending transaction + Отправка транзакции + + + + Optimizing wallet + Оптимизация кошелька + + + + Sending message + Отправка сообщения + + + + Creating deposit + Создание депозита + + + + Withdrawing deposit + Вывод депозита + + + + + Ready + Готово + + + + Synchronizing + Синхронизация + + + + Synchronized + Синхронизировано + + + + Warning + Внимание + Optimizing Оптимизация @@ -2943,12 +2978,12 @@ Your wallet will be optimized automatically every 15 minutes. СИНХРОНИЗАЦИЯ - + Unencrypted Незашифрованная - + Encrypted Зашифрованные @@ -2961,7 +2996,7 @@ Your wallet will be optimized automatically every 15 minutes. ВНИМАНИЕ - + There was a problem, please restart your wallet. Была Проблема. Пожалуйста Перезапустите Кошелек. diff --git a/src/languages/tr.qm b/src/languages/tr.qm index 0796ed26053dfd67708f34e64b5d6c644e58df18..9c2d59c92bfaddf1aba4126e5ce0b56162a1e809 100644 GIT binary patch delta 2991 zcma)8c~n&Q75*Oc-Wz6T5kXNl8B|bE5Cw4s1Z5czB-BySff-@g#W4o6jBTKbR7IZ) zi4?>=Y8qv6M~%T_rKr(}%c)B+sU8hjX*5RS(mTG?)}H>+Ki+)ve#>3H``vq9^-s** zmyGYYLq@l@zt^lk=RM%Wy!w`#I|0~PN+JPy7{I;+;%BcJ=xSaLBs2rFq8~ft;WS8P&+IfWFR* zbI2%ipk~}^eS!J681Eo**td$Aew_>!RtYy5SL-uoL$4b!N5|Anyb6rC#P|z4DKM zL9r5P`c?}6f{58xiSpB z0J|lfBPSv3KJP{#;1GLYlNpeH#2&6-fq}mjS|qL`O>Fyh$~hyGy`Zh97F#W%!I8a` zN<|qwU&Qn&?6uZvz&%-bA@Q@uyRtvLcuWnroMUYo_lV*652^Bw_qje=3oz_w&i&bG zz_^|Zt#1M*oaREe(RySA7qO2T)jOCQr>3Ah9&nST=YfSQxR~bEfNu*|UfG9gS1w}8 z7H*aMc3L0KZH%ZR_Z?hy^8{E?P{Y+{C;{_fZpZptO2l~B{?Nuh_>^Rda9Sp>pM9I~7_Z;m4@iB^XTHp) za_}N1mh(kk9%QgUME#Ha%7Y|E&vstW526tj$A59W3>e+Rx9)QVv{U%gA5#}he8%5D zPfa;^FW+^H5|LZ@9>z+t4v*)1uTW2VlKKl_RyNpRDo)1v~kcZ0+t7z>JZyFUFF6t6P=qgxgF~f1d1gHPLOj zC~K<=q*-@Z*5UalV9H8aX9|@kSS{=9rU1fO*}Ya`Wn6=Z)BR-+M{lKJbw~Cnp@T-* z9NDX>q#IoydEZz{B;~O@e8CxD>;ie_79ydKSuWI5!1|5yji0BHFvA+;n@3ZIbItPl zD2jaIc=fspgmT6E4QjwL zTIiN~j_g!?dt@!?-$~IEf1O5*R;l7QksAIYVq&n;vAu~JHbfcFeUl2YRtU8ZwB|G` zBN9mrkrg6FO%*X(^DDL~V^qtiem^L6Bd(Fi_AB*?+liJP%2^+*qd5?v%y@p8*x;0N zgJu9D>y*pN0x2s&xnk*h5~o^O+1*ZhFeKcX z(JCK@k4bEsR59Tc(3lLBA>?~t{47<$RWcOtR8_o_gyFtIRgp~X6I&o+))Q4lDmgZl zsy2_Jc9nc8qT63pdp{$=B|TN0+Cf6fd8)dbO7@s$5giq(XQ#5M&%O4k2lx^1<6G6f z9c481W7X66XuvH-J>8`cNWZPt|3aS*BdXPziZmJ|->N@!rg{fHSMNJW^~(!XAOC$5 z3GIyf!g$Is+e>}pOgNxip?)%x>|}r0tOXlh%?K~4sFU8HL4mCbM;*QNq{n z4HP!VIyq?GoLFqg&o|i)cnSfzDq()krZFCf!gGqw_&QQA`n^Zd=F?M(B9y#|Se;aC zDztfdW5Y+#COa@i0v|Zk$uX(eVlFT*dHXiTE;7k|i)BpPsj)(4?9QjW#C*!rZjJ!qOb4NMB|IGnbBG8 zONpUyp&`p+E-JLeGR6m~WTFsx_X z-`jTub)dIG^&e-fx!Oj9If|L&^LG8n{5^7z_dip0PB&X}j3tJ}|5aLnPxNbS%hfsj E6J`uJ?*IS* delta 2442 zcmXYzd015E8O6_Vx4AQOXCR6}Frdhc3d)X(;0m&X2qJY@M3x{yMXj;=h)x=z28l); zaVb^=ktU!GI#9(u1ZqPFT9p`|igAhfxQEoV5rg){FMs{!Zr}I5=RN0pruUU<&wo{x z&=a{%9nbbvd^2jqxvc6lJ+lD$7Qnv(Vn+Z%2*3q08X5ozKu8o2*9@dx-J9%=^-Gdjxntp{NWz}y#c)C!mq%D_24_~>Be^OkA3O- zFAzMh0=Y9Ftfmj`au^+KjHbg7KBD{6+94d?LL2`J!udR4riw96&zO-9DTUq(SqG`G zmDmVr^-khFxPB1^j2jBen;)t3;o}$#q&XvC#cLpPF=nr-1>Ty+7}toXq3@Ft*^Krd zG6vQoHhdfKt|#L5W>ewmNEk!vyz>p?oTW%wbDF+WF$QJAyks5~JRF5Ss{qw<3wCTJ z8BLC;G5G)^9MO`yA6Rq;muxP8V;f_FCvKnNfXtn^-_O$wj^g=RlGf)VmE!j$Fl>m* zX}<@M{Y*8=r-iP!spej%b>6F1{js9QIXTK9*@2A=|$k-Of42xb>HT@dkyGPX- zNgpJ1s4iFi9#AK#`fuC=M)lh{ch3Np`r9S+Jp~rG*sZChjSQS!=i~?U+-TRY*#NkI z&q=8VseuZ{oNb)$)X#u_E0=s~GvEd;we~EqFo#<{mZbLwxAN0yz>@KhYig(gBKC6U z6`FZa6=V7pu48v8F!CqH*jUE&?Oa!V6G?rByUKY2t`WR!djZU!`k-%=f}MB?f2n@fM>jaN*}P`EI;|aBcOcCIDR9ac#S$3a*Z!6(gTI=)_L3{ zRigD{&eamy!k3XxS#fRPJzq(ig%rWwv*GYv;cmATWnqv3~<3f(VoJ`{wV|qgl zse(0-H(6q?@s9?cQxu~Fe$d&jIze1d^LKb43^lF-#-9*eUbF*QbwW^e6D6ip2&$#~ zGhYfJjTG6D9YUy{>T_)rW=dT^QKb;k{0ZQZB9xX7rLn~_CS?od4OF-BfUwo&5HPx3 z*d0;@3tTFNJliwVC_2d0~h^N)#1iBw^(lJ>xTo$r^W17`7|MsF@CmKG}4t8 z6d27mam#TsrrQqDY9398mPY*iYzZ*&sMyx{Hoey)wr_k2Om7h%bWt+LED;}{wooUU zRbrotoE@wc`@f}Rj`R};X5|3OzLdPuuTmmjG3NXt`5!DLMT}BFUoKfAM~YcQ-@jEZ z#rD$sb5o?n(RBJobxMWfNePWC)e8dPxms%Y_%0oS`xu7|VGMdlYA_8xNK2I3mQWOZ zPDs|k*ejP0fd;gF?_QwLfJ&Y z+NewL{f_K)RA-JqL~_*W(u#Ld&|c~m`phGl7wR^ZcvBa(y3HR{kdM1`k4B(QelqFJNA}26rEmq2sY2!tkl>>nkRPN7=PXAU8e@4cdb6jbyBg5pWmEL4p zPu0xmpjBS9Qea1}){ij#Oi7xa;My-({KkJG&Jr|ZxDsfhx*Nq=!Fb(rI)zi}ZL&~4Vg>@B54XBpf&NFn1t z4P!@8A!ENbOxQ<8HKrOS9P1{7)*B{9Ia7!6TMVU<9yGC+hW%$~!Q3L+WreG4fo7hI z^@+RDrZX)RYnSx9Xy?F`M%pHTZ`URtd|NZt;-6tZ1GFORMy@& Klg+6p!T$dYL!|@& diff --git a/src/languages/tr.qph b/src/languages/tr.qph index c8357b08..fe5c83b7 100644 --- a/src/languages/tr.qph +++ b/src/languages/tr.qph @@ -1,21 +1,5 @@ - - About %1 - Hakkında - - - <html><head/><body><p>Version %1</p><p>Conceal.Network is a decentralized blockchain bank, with deposits and investments paying interest rates, without involvement of financial institutions, powered by 100% open source code. Conceal.Network enables untraceable and anonymous messaging, and a secure way to transfer funds. Using a distributed public ledger, the sender and receiver are kept anonymous.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">http://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> - Conceal.Network, %100 açık kaynak koduyla çalışan, finansal kurumların bir müdahalesi olmadan faiz ödeyen, mevduat ve yatırım programlarına sahip olan, merkezi olmayan bir blok zinciri bankasıdır. Conceal.Network, izlenemeyen ve anonim mesajlaşmalar ve para transferi için güvenli bir yol sağlar. Dağıtık bir muhasebe defteri kullanılarak, gönderen ve alıcı gizli tutulur. - - - CLOSE - KAPAT - - - The Conceal Wallet - Conceal Cüzdanım - Select address Adres seç @@ -24,154 +8,6 @@ CHOOSE SEÇ - - Address Book - Adres Defteri - - - ADDRESS BOOK - ADRES DEFTERİ - - - COPY ADDRESS - ADRESİ KOPYALA - - - REMOVE ADDRESS - ADRESİ KALDIR - - - ADD NEW ADDRESS - YENİ ADRES EKLE - - - BACK - GERİ - - - Frame - - - - Settings - Ayarlar - - - BACK - GERİ - - - OPTIMIZE NOW - OPTİMİZE ET - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">This process will optimize your wallet for large transactions. The optimization will take approximately 22 minutes. Please note that you will not be able to spend any of your funds until the optimization process is complete. In some cases, the wallet might need optimization more than once.</span></p></body></html> - Bu işlem, cüzdanınızı büyük işlemler için optimize eder. Optimizasyon yaklaşık 22 dakika sürer. Lütfen optimizasyon işlemi tamamlanana kadar hiçbir fonunuzu harcayamayacağınızı unutmayın. Bazı durumlarda, cüzdanın bir defadan fazla optimizasyona ihtiyacı olabilir - - - Optimization recommended for this wallet - Bu cüzdan için optimizasyon önerilir - - - Optimize Wallet - Cüzdanı optimize et - - - Auto Optimization - Otomatik Optimizasyon - - - ENABLE - AÇIK - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">Enable auto-optimize and the wallet will automatically optimize your wallet in the background while your wallet is open. The operation will only run if the wallet requires optimization . The process will check every 15 minutes. Auto optimization is disbaled by default.</span></p></body></html> - - - - Rescan Wallet - Cüzdanı Sıfırla - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">When you rescan, the wallet scans the blockchain again to refresh your wallet and transaction details.</span></p></body></html> - Yeniden taradığınızda, cüzdan, cüzdanınızı ve işlem ayrıntılarınızı yenilemek için blok zinciri tekrar tarar. - - - RESCAN NOW - SIFIRLA - - - Close to Tray - - - - Minimize to Tray - - - - Built-in Node - Yerleşik Düğüm - - - Custom Remote Node - Özel Uzak Node - - - Automatic Remote Node - Otomatik Uzak Node - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">By default your wallet will connect using the built-in node, helping with decentralisation. You can also use a remote node if you dont want to download the entire blockchain.Please note that some remote nodes will have fees when sending transactions.</span></p></body></html> - Varsayılan olarak, cüzdanınız merkezsizleştirmeye yardımcı olarak yerleşik düğümü kullanarak bağlanacaktır. Tüm blockchain'i indirmek istemiyorsanız uzak bir düğüm de kullanabilirsiniz. Lütfen bazı uzak düğümlerin işlem gönderirken ücret alacağını unutmayın. - - - Set Connection Type - Bağlantı ayarları - - - Russian - Rusça - - - Turkish - Türk - - - English - Ingilizce - - - Select Language - Dilinizi Seçin - - - Other - - - - SAVE - KAYDET - - - Chinese - Çince - Change Password Parolayı değiştir @@ -201,193 +37,173 @@ p, li { white-space: pre-wrap; } İPTAL - Deposit Details - Mevduat Detayları - - - CLOSE - KAPAT - - - Frame + Contact - BACK - GERİ - - - BANKING - BANKACILIK - - - CREATE - OLUŞTUR - - - Select the length of your deposit - Mevduat süresini seç + Label + Etiket - The fee for this deposit: - Bu mevduat için ücret: + Address + Adres - How much would you like to deposit? - Ne kadar yatırmak istiyorsunuz? + Payment ID + - 5040 blocks - + OK + TAMAM - Interest earned at the end of your deposit: - Mevduatın sonunda kazanılacak faiz: + CANCEL + İPTAL - 0.001000 - + Deposit Details + Mevduat Detayları - interestLabel - + CLOSE + KAPAT - (minimum of 1 CCX) - (en az 1 CCX) + Saving data + Veriler kaydediliyor - (minimum term of 1 week, maximum 52 weeks) - (minimum term of 1 week, maximum 52 weeks) + %1 wallet is saving data. +Please wait... + %1 cüzdan veri kaydediyor. +Lütfen bekle... - Length in blocks: - Blok uzunluğu + Import GUI key + GUI anahtarını içe aktar - ADD ALL - HEPSİNİ EKLE + Import GUI Key + GUI anahtarını içe aktar - Unlocked Investments - Kilidi Açılmış Yatırımlar + GUI Key + GUI anahtarını içe aktar - WITHDRAW - PARA ÇEK + Wallet Path + Cüzdan Yolu - Withdraw - Para Çek + Where would you like to save your wallet? + - Unlocked Deposits - Kilidi Açılmış Mevduatlar + IMPORT + İÇE AKTAR - Total Unlocked - Toplam Kilidi Açılan: + CANCEL + İPTAL - INTEREST % PER WEEK - HAFTA BAŞINA % FAİZ + Recreate your wallet with the GUI key + GUI key ile cüzdanınızı yeniden oluşturun - Weeks - Hafta + Recreate your wallet with the secret spend and view keys + Cüzdanınızı gizli harcama ve yeniden görüntüleme tuşlarıyla yeniden yaratın - Interest - Faiz + Private Spend Key + Cüzdanınızı gizli harcama ve yeniden görüntüleme tuşlarıyla yeniden yaratınz - NEW DEPOSIT - YENİ MEVDUAT + Wallet Path + Cüzdan Yolu - NEW INVESTMENT - YENİ YATIRIM + IMPORT + İÇE AKTAR - Select the length of your investment - Yatırımınızın uzunluğunu seçin + CANCEL + İPTAL - Fee - Ücret + Import Private Keys + - Quarters - Çeyrek + Recreate your wallet with the secret spend and view keys + Cüzdanınızı gizli harcama ve yeniden görüntüleme tuşlarıyla yeniden yaratın - How much would you like to invest? - Ne kadar yatırım yapmak istersiniz? + Private Spend Key + Cüzdanınızı gizli harcama ve yeniden görüntüleme tuşlarıyla yeniden yaratınz - 68400 blocks + Private View Key - CCX - + Wallet Path + Cüzdan Yolu - investmentInterest + Where would you like to save your wallet? - (minimum of 50,000 CCX) - (en az 50.000 CCX) + IMPORT + İÇE AKTAR - (minimum term of 1 quarter, maximum 20 quarters) - (en az 1 çeyrek, en fazla 20 çeyrek) + CANCEL + İPTAL - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - + Import :: Mnemonic Seed + Mnemonic Seed'I Içe Aktar - Legal Disclaimer - Yasal Uyarı + Recreate your wallet with the 25 word mnemonic seed + 25 kelimelik mnemonic seed ile cüzdanınızı yeniden oluşturun - <html><head/><body><p>Conceal is an open source experimental project, which means that there is no company behind it. This project is supported by the community, meaning there is no stable, full-time team and no physical headquarters from which the projects runs its operations. </p><p>Conceal is distributed in the hope that it will be useful to mankind, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANT ABILITY or FITNESS FOR A PARTICULAR PURPOSE.</p><p>Copyright Notice </p><p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: </p><p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. </p><p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p><p>Copyright 2018-2019 - Conceal.Network</p></body></html> - <html><head/><body><p>Conceal, açık kaynaklı bir deneysel projedir, yani arkasında herhangi bir şirket yoktur. Bu proje topluluk tarafından desteklenmektedir, yani kendini projeye adamış bir ekibe sahiptir, projeye herkes katkıda bulunabilir ve bu çalışmalar gönüllülük esasına dayanır ve belirli bir merkezi bulunmamaktadır. </p><p>Conceal, insanlığın yararına olacağı umuduyla geliştirilmiştir, ancak belirli bir amaca yönelik uygun olacağının garantisi veya ticari bir garantisi bulunmamaktadır.</p><p>Telif Hakkı Uyarısı </p><p>Bu yazılımın ve ilgili dokümantasyon dosyalarının (&quot;Yazılım&quot;) bir kopyasını alan herhangi bir kişinin, ücretsiz olarak, kısıtlama olmaksızın, aşağıda yer alan şartlara bağlı olarak, Yazılımın kopyalarını kullanma, kopyalama, değiştirme, birleştirme, yayınlama, dağıtma, alt lisanslama ve/veya satma haklarını sınırlandırmaksızın Yazılımı dağıtmasına ve Yazılımın sunulacağı insanların da bu haklara sahip olmalarına izin verilir: </p><p>Yukarıdaki telif hakkı bildirimi ve bu izin bildirimi, Yazılımın tüm kopyalarına veya önemli bölümlerine dâhil edilecektir. </p><p>YAZILIM, SATILABİLİRLİK, BELİRLİ BİR AMACA UYGUNLUK VE İHLAL EDİLMEME GARANTİLERİ DÂHİL ANCAK BUNLARLA SINIRLI OLMAMAK ÜZERE, AÇIK VEYA ZIMNİ HERHANGİ BİR GARANTİ OLMAKSIZIN, &quot;OLDUĞU GİBİ&quot; SAĞLANIR. YAZARLAR VEYA TELİF HAKKI SAHİPLERİ, HİÇBİR KOŞULDA, HERHANGİ BİR SÖZLEŞMEDEN, HAKSIZ FİİLDEN VEYA YAZILIMIN KULLANIMINDAN KAYNAKLANAN VEYA KAYNAKLANMAYAN YA DA YAZILIM İLE İLİŞKİLİ OLAN HERHANGİ BİR DURUMDAN KAYNAKLANAN HİÇBİR İDDİA, ZARAR VEYA DİĞER YÜKÜMLÜLÜKLERDEN SORUMLU TUTULAMAZ.</p><p>Telif hakkı saklıdır 2018-2019 - Conceal.Networkk</p></body></html> - + Import Mnemonic Seed + Mnemonic Seed'I Içe Aktar - CLOSE - KAPAT + Wallet Path + Cüzdan Yolu - Saving data - Veriler kaydediliyor + IMPORT + İÇE AKTAR - %1 wallet is saving data. -Please wait... - %1 cüzdan veri kaydediyor. + CANCEL + İPTAL - Import GUI key - GUI anahtarını içe aktar + Import Mnemonic Seed + Mnemonic Seed'I Içe Aktar - Import GUI Key - GUI anahtarını içe aktar + Recreate your wallet with the 25 word mnemonic seed + 25 kelimelik mnemonic seed ile cüzdanınızı yeniden oluşturun - GUI Key - GUI anahtarını içe aktar + Mnemonic Seed + Wallet Path Cüzdan Yolu - ... + Where would you like to save your wallet? @@ -399,24 +215,20 @@ Please wait... İPTAL - Recreate your wallet with the GUI key - GUI key ile cüzdanınızı yeniden oluşturun - - - Import :: Mnemonic Seed - Mnemonic Seed'I Içe Aktar + Import + Içe Aktar - Recreate your wallet with the 25 word mnemonic seed - 25 kelimelik mnemonic seed ile cüzdanınızı yeniden oluşturun + Import a tracking wallet (view-only) + Salt Görüntülenebilir Cüzdani Içe Aktar - Import Mnemonic Seed - Mnemonic Seed'I Içe Aktar + Import Tracking Key + Salt Görüntüleme Anahtarını İçe Aktar - Mnemonic Seed - + Tracking Key + Salt Görüntüleme Anahtarı Wallet Path @@ -430,29 +242,13 @@ Please wait... CANCEL İPTAL - - ... - - - - Dialog - - Wallet path: - Cüzdan Yolu - - - ... - + Cüzdan Yolu: Tracking key - - - - IMPORT - İÇE AKTAR + Salt Görüntüleme Anahtarı EXIT @@ -463,51 +259,75 @@ Please wait... SALT GÖRÜNTÜLENEBİLİR CÜZDANI İÇE AKTAR - Connection Settings - Bağlantı ayarları + Import Tracking Key + Salt Görüntüleme Anahtarını İçe Aktar - Select Your Language - Dilinizi Seçin + Import a tracking wallet (view-only) + Salt Görüntülenebilir Cüzdani Içe Aktar - English + Tracking Key + Salt Görüntüleme Anahtarı + + + Wallet Path + Cüzdan Yolu + + + Where would you like to save your wallet? - CLOSE - KAPAT + IMPORT + İÇE AKTAR - SAVE - KAYDET + CANCEL + İPTAL - Russian + Enter password + Parolayı gir + + + Type your password... - Turkish + CONTINUE + DEVAM + + + Incorrect Password. Please try again. - Chinese - Çince + Welcome Back + - Links + Click CONTINUE or press ENTER to unlock your wallet - <html><head/><body><p align="center">Website<br/><a href="https://conceal.network"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network</span></a></p><p align="center">Discord<br/><a href="https://discord.conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://discord.conceal.network/</span></a></p><p align="center">Telegram<br/><a href="https://t.co/55klBHKGUR"><span style=" text-decoration: underline; color:#ffa500;">https://t.co/55klBHKGUR</span></a></p><p align="center">Twitter<br/><a href="https://twitter.com/ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://twitter.com/ConcealNetwork</span></a></p><p align="center">Reddit<br/><a href="https://www.reddit.com/r/ConcealNetwork/"><span style=" text-decoration: underline; color:#ffa500;">https://www.reddit.com/r/ConcealNetwork/</span></a></p><p align="center">Medium<br/><a href="https://medium.com/@ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://medium.com/@ConcealNetwork</span></a></p><p align="center">Github<br/><a href="https://github.com/ConcealNetwork"><span style=" text-decoration: underline; color:#ffa500;">https://github.com/ConcealNetwork</span></a></p><p align="center">Bitcointalk<br/><a href="https://bitcointalk.org/index.php?topic=5086106"><span style=" text-decoration: underline; color:#ffa500;">https://bitcointalk.org/index.php?topic=5086106</span></a></p></body></html> + Conceal Desktop 6.2.1 - CLOSE - KAPAT + HELP + YARDIM + + + EXIT + ÇIKIŞ + + + CHANGE + - MainWindow + Click CHANGE to choose (or create) another wallet @@ -530,10 +350,6 @@ Please wait... Exit Çikiş - - Ctrl+Q - - ADDRESS BOOK ADRES DEFTERİ @@ -623,21 +439,21 @@ Please wait... Salt Görüntülenebilir Cüzdani Içe Aktar - Frame + Conceal Desktop Send To: - Gönder - - - ... - + Gönder: Message Mesaj + + Message Details + + Block height Blok yüksekliği @@ -655,188 +471,256 @@ Please wait... Mesaj boyutu - Reply - Yanıtla + SAVE TO FILE + DOSYAYA KAYDET - Save to file - Dosyaya kaydet + OK + TAMAM - << - + New address + Yeni adres - >> - + Address: + Adres: - Ok - Tamam + Label: + Etiket: - Frame - + Payment ID: + Payment ID: - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - + CANCEL + İPTAL - MESSAGES - MESAJLAR + OK + TAMAM + + + Enter password + Parolayı gir + + + New Password + Yeni Parola + + + Confirm Password + Parolayi Onayla + + + Password not confirmed + Parola onaylanmadı + + + SAVE + KAYDET + + + CLOSE + KAPAT + + + BANKING + BANKACILIK + + + INBOX + GELEN KUTUSU + + + ABOUT + HAKKINDA + + + TRANSACTIONS + İŞLEMLER + + + SETTINGS + AYARLAR + + + DASHBOARD + GÖSTERGE PANELİ + + + ADDRESS BOOK + ADRES DEFTERİ + + + LOCK + KİLİTLE + + + SEND FUNDS + FONLARI GÖNDER NEW MESSAGE YENİ MESAJ - BACK - GERİ + HELP + YARDIM - Frame - + DEPOSITS + MEVDUATLAR - MINING - + Locked + Kilitli - Select a mining pool - + DEPOSIT + MEVDUAT - Number of CPU cores - + Withdrawable + Çekilebilir + + + INVESTMENTS + YATIRIMLAR + + + COPY WALLET ADDRESS + CÜZDAN ADRESİ + + + CONTACT US / STAY INFORMED + BİZE ULAŞIN - ADD MINING POOL + Discord - Mining status : + Telegram - Stopped + Twitter - START MINING + Market Place - PAUSE MINING + Medium - BACK - GERİ + TradeOgre + - New address - Yeni adres + Locked Deposits + Kilitli Mevduat - NEW ADDRESS BOOK ENTRY - YENİ ADRES DEFTERİ GİRİŞİ + Available + Mevcut - LABEL - ETİKET + TOTAL BALANCE + TOPLAM BAKİYE - ADDRESS - ADRES + Pending + Beklemede - PAYMENT ID - Payment ID + Withdraw + Para Çek - ADD - EKLE + RECENT ACTIVITY + SON ETKİNLİK - CANCEL - İPTAL + VOLUME + - New remote node - Yeni Uzak Düğüm + MARKETCAP + PIYASA DEĞERI - Host - + MARKET INFORMATION + PİYASA BİLGİSİ - OK - TAMAM + HISTORICAL DATA + TARİHSEL VERİ - CLOSE - KAPAT + Website + - Add Remote Node - Ekle Uzak Düğüm + Web Wallet + - Enter password - Parolayı gir + Make Deposit + - New Password - Yeni Parola + Click to Copy + - Confirm Password - Parolayi Onayla + Settings + - Password not confirmed - Parola onaylanmadı + Show QR Code + - SAVE - KAYDET + Lock Wallet + Kilit Cüzdanı - CLOSE - KAPAT + OPTIMIZE + OPTİMİZE ET - New pool + START - Host: + Font - Port: - + Minimize to tray + Simge durumuna küçült - CANCEL - İPTAL + Start Maximized + - OK - TAMAM + Font Size + - Connection Settings - Bağlantı ayarları + MESSAGE OVERVIEW + MESAJ GENEL BAKIŞ - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:15px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:15px;">By default your wallet will connect using the built-in node, helping with decentralisation. You can also use a remote node if you dont want to download the entire blockchain.Please note that some remote nodes will have fees when sending transactions.</span></p></body></html> - + Connection + Bağlantı Custom Remote Node @@ -847,520 +731,627 @@ p, li { white-space: pre-wrap; } Yerleşik Düğüm - CLOSE - KAPAT + Automatic Remote Node + Otomatik Uzak Node + + + Set connection type + Bağlantı ayarları SAVE KAYDET - Automatic Remote Node - Otomatik Uzak Node + Optimization + Optimize ediliyor + + + Auto optimization + Otomatik Optimizasyon + + + Large transactions + Büyük Işlemler + + + Rescan wallet + Cüzdanı Sıfırla + + + ENABLE + AÇIK + + + OPTIMIZE NOW + OPTİMİZE ET + + + START RESCAN + Cüzdanı Sıfırla + + + (Optimization not required) + (Optimizasyon gerekmez) + + + Preferences + Tercihler + + + Close to tray + Simge durumuna kapat + + + Language + Dil + + + Currency + Para birimi + + + Chinese + Çince + + + English + Ingilizce + + + Russian + Rusça + + + French + Fransızca + + + Turkish + Türk + + + Wallet Operations + Cüzdan + + + OPEN WALLET + Cüzdani Aç + + + NEW WALLET + Cüzdan dosyası + + + ENCRYPT WALLET + Cüzdanı Şifrele + + + New/Existing + Yeni veya mevcut cüzdan + + + Import + Içe Aktar + + + Backup + Yedekle + + + IMPORT TRACKING WALLET + Salt Görüntülenebilir Cüzdani Içe Aktar + + + BACKUP KEYS + YEDEKLE + + + IMPORT PRIVATE KEYS + PRIVATE KEY'LERİ İÇE AKTAR + + + BACKUP WALLET FILE + YEDEKLE CÜZDAN DOSYASI + + + IMPORT SEED + SEED İÇE AKTAR + + + Import Wallet + Cüzdanı İçe Aktar + + + New or Existing Wallet + Yeni veya mevcut cüzdan + + + ABOUT QT + Qt HAKKINDA + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Poppins'; font-size:16px; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:14px;">Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost.</span></p></body></html> + Lütfen göndermeden önce Adres ve Ödeme Kimliğinin (varsa) doğru olduğundan emin olun. Yanlış adrese gönderilen fonlar kaybedilecektir. + + + Payment ID (Optional) - Required at some Exchanges + - Frame + Message (Optional) - Banking - Bankacilik + Save to Address Book + Adres Defterine Kaydet - Messages - Mesajlar + Amount + Miktar - About - Hakkında + Address + Adres - Transactions - Işlemler + SEND + GÖNDER - Settings - Ayarlar + CANCEL + İPTAL - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:12px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; line-height:160%;"><span style=" font-size:13px;">statusBox</span></p></body></html> - + Do not include message in blockchain + Blok zinciri içine mesaj yerleştirme - Wallet - Cüzdan + Set self destruct time + Kendini yok etme zamanı ayarla - First + COPY PAYMENT ID - Second + NEW CONTACT - Third + HELP DESK - Fourth + DONATION - Fifth + Quarter - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + Half - Sixth + All - RECENT TRANSACTIONS - SON İŞLEMLER - - - Pending - Beklemede + Send + - Available - Mevcut + Cancel + - FUNDS - FONLAR + Clear All + - DEPOSITS - MEVDUATLAR + <html><head/><body><p><span style=" font-weight:600;">ABOUT CONCEAL</span></p><p>Conceal.Network is a decentralized blockchain bank, with deposits and investments paying interest rates, without involvement of financial institutions, powered by 100% open source code. Conceal.Network enables untraceable and anonymous messaging, and a secure way to transfer funds. Using a distributed public ledger, the sender and receiver are kept anonymous.</p><p><a href="http://opensource.org/licenses/MIT"><span style=" text-decoration: underline; color:#ffa500;">https://opensource.org/licenses/MIT</span></a></p><p><a href="https://conceal.network/"><span style=" text-decoration: underline; color:#ffa500;">https://conceal.network/</span></a></p></body></html> + - Locked - Kilitli + ABOUT CONCEAL DESKTOP + - Withdrawable - Çekilebilir + This software is using Qt + - CONCEAL.NETWORK - CONCEAL CÜZDANI + This software is using QtCharts + - currentWallet + LICENSE AND SOURCE CODE - SEND - GÖNDER + This is your transaction history. It is a list of all incoming and outgoing transactions, deposits, and optimizations. If there are any discrepancies, please do a rescan of your wallet to purge any failed transactions from the list. Double-click individual entries to get a more detailed view. + - BANKING - BANKACILIK + Clear + - MESSAGE - YENI MESAJ + Note: Maximum message size is 260 characters. + Not: Maksimum mesaj boyutu 260 karakterdir. - INVESTMENTS - YATIRIMLAR + Refresh data + - CCX - CCX + BUY/MARKETS + - VOLUME - HACIM + TOOLS + - MARKETCAP - PIYASA DEĞERI + sm + - BTC + Wiki - WALLET ADDRESS - CÜZDAN ADRESI + COMMUNITY + - ccx7VYYGA65jUCfVaeiaHeSN5cmZZcLbhMm1FbpLYpnPVuDKKpH3n3hMiosUCs7LiT1WLrGx8nfZkeETox622EGt4ky2GihVZ8 + Withdraw Deposit - MARKET INFORMATION - PAZAR BILGISI + NEW DEPOSIT + YENİ MEVDUAT - Enter password - Parolayı gir + How long should your deposit last? + Depozitonuz ne kadar sürer? - CONTINUE - DEVAM + Auto refresh data + - Incorrect Password - Yanlış Parola + Status + Durum - Please Enter Your Password For Wallet - Parolayı gir + How much do you want to deposit? + Ne kadar yatırmak istiyorsunuz? - currentWallet - + Interest rate: + Faiz: - blocks - + Rewards you will earn: + Kazanacağınız ödüller: - Error - + Fees for this deposit: + Bu depozito ücretleri: - Help - Yardim + Length on the blockchain: + Uzunluk: - Fail - + Deposit Details + Mevduat Detayları - STARTING WALLET - CÜZDAN YÜKLENİYOR + MAKE DEPOSIT + YENİ MEVDUAT - Conceal Wallet Update - Conceal Cüzdan Güncellemesi + DEPOSIT HISTORY + TARİHSEL VERİ - There is an update to the wallet available. -Would you like to go to the download page? - Bir cüzdan güncellemesi bulunuyor. İndirme sayfasına gitmek ister misiniz? + WITHDRAW + PARA ÇEK - Frame - + CONCEAL.NETWORK + CONCEAL CÜZDANI - WALLET SEED AND KEYS - CÜZDAN SEED'LERİ VE KEY'LERİ + YOUR CONTACT LIST + İLETİŞİM LİSTENİZ - YOUR 25 WORD MNEMONIC SEED - 25 KELIMELIK MNEMONIC SEED + COPY ADDRESS + ADRESİ KOPYALA - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:11pt;">Your wallet is an older format that does not support mnemonic seeds. Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet.</span></p></body></html> - + COPY PAYMENTID + KOPYALA PAYMENT ID - COPY - KOPYALA + PAY TO + ÖDEMEK - BACK - GERİ + EDIT CONTACT + İLETİŞİM DÜZENLE - COPY SPEND KEY - KOPYALA SPEND KEY + DELETE CONTACT + KİŞİYİ SİLMEK - PRIVATE SPEND KEY - + SEND MESSAGE + MESAJ GÖNDER - PRIVATE VIEW KEY + Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost. - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier'; font-size:10pt;">private spend key goes here</span></p></body></html> + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/) - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Courier'; font-size:10pt;">private view key goes here</span></p></body></html> + EXPORT CSV - COPY VIEW KEY - KOPYALA VIEW KEY + Message + Mesaj - ■ Keep your seed and password safe - ■ Seed'lerinizi ve parolanızı güvende tutun + PRICE + - ■ Make a backup of your wallet file - ■ Cüzdan dosyanızın bir yedeğini alın + 24 HOUR CHANGE + - ■ Be aware of phishing websites and programs - ■ Sahte web sitelerine ve zararlı programlara dikkat edin + GitHub + - ■ Store a copy of your seed in a safe place - ■ Seed'inizin bir kopyasını güvenli bir yerde saklayın + A complete history of all your deposits. Double-click an individual deposit for a more detailed view. + - We care about your safety: Please read the following - Güvenliğinize önem veriyoruz: Lütfen aşağıdakileri okuyun + This wallet is locked. Please click below to unlock your wallet. + Bu cüzdan kilitli. Cüzdanınızın kilidini açmak için lütfen aşağıya tıklayın. - SHOW SEED - Seed Göster + UNLOCK WALLET + KILIT AÇILMA CÜZDAN - private keys - private key'ler + Current Wallet + Mevcut Cüzdan - gui key + Portfolio (CCX) - advanced users: - ileri düzey kullanıcılar: - - - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + A list of incoming and outgoing messages for this wallet. - YOUR GUI KEY - GUI KEY + Portfolio (USD) + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:17px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:11pt;">gui key goes here</span></p></body></html> + Current Height - Frame - + Enter password + Parolayı gir - SEND FUNDS - FONLARI GÖNDER + Type your password... + - BACK - GERİ + CONTINUE + DEVAM - PAYMENT ID (OPTIONAL) - PAYMENT ID (İSTEĞE BAĞLI) + Incorrect Password + Yanlış Parola - ADDRESS - ADRES + CANCEL + İPTAL - LABEL - ETİKET + Please Enter Your Password + Parolayı gir - 0.000000 + blocks - AMOUNT - MIKTAR + Error + - AVAILABLE BALANCE - MEVCUT BAKİYE + Help + - CLEAR ALL - HEPSİNİ TEMİZLE + Fail + - FEE - ÜCRET + %1 Wallet failed to start. +Check that port %2 is not already in use. + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:16px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:9pt;">Please ensure that the Address and the Payment ID (if included) are correct before sending. Funds sent to the wrong address will be lost.</span></p></body></html> - Lütfen, göndermeden önce Adres ve Ödeme Kimliğinin (varsa) doğru olduğundan emin olun. Yanlış adrese gönderilen fonlar kaybedilecek. + STARTING WALLET + CÜZDAN YÜKLENİYOR - ADDRESS BOOK - ADRES DEFTERİ + Conceal Wallet Update + Conceal Cüzdan Güncellemesi - NODE FEE - NODE ÜCRET + There is an update to the wallet available. +Would you like to go to the download page? + Bir cüzdan güncellemesi bulunuyor. İndirme sayfasına gitmek ister misiniz? - CRYPTO MESSAGE (OPTIONAL) - KRİPTO MESAJ (İSTEĞE BAĞLI) + Seed confirmation error + - You can send an optional message along with your transfer. There is a 0.000010 CCX fee per character. - Transferinizle birlikte isteğe bağlı bir mesaj gönderebilirsiniz. Karakter başına 0.000010 CCX ücret kesilir. + Conceal Desktop Update + - Some exchanges and other services require that a Payment ID is included when sending funds. - Bazı borsalar ve diğer hizmetler, para gönderirken bir Payment ID eklemenizi gerektirir. + There is an update available. +Would you like to go to the download page? + - Include a label if you want to save the recepient in your Address Book - Alıcıyı Adres Defterinize kaydetmek istiyorsanız bir etiket ekleyin. + WALLET KEY BACKUP + YEDEKLE - Please enter the receivers address - Lütfen alıcıların adreslerini girin + YOUR 25 WORD MNEMONIC SEED + 25 KELIMELIK MNEMONIC SEED - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> - + COPY + KOPYALA - Frame - + BACK + GERİ - Add "Reply To" - "Cevap" ekle + COPY SPEND KEY + KOPYALA SPEND KEY - Do not include message in blockchain - Blok zinciri içine mesaj yerleştirme + PRIVATE SPEND KEY + - Set self destruct time - Kendini yok etme zamanı ayarla + private spend key goes here + - ttl + PRIVATE VIEW KEY - FEE - ÜCRET + private view key goes here + - SEND MESSAGE - MESAJ GÖNDER + COPY VIEW KEY + KOPYALA VIEW KEY - BACK - GERİ + ■ Keep your seed and password safe + ■ Seed'lerinizi ve parolanızı güvende tutun - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'monospace'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Tracking key goes here</p></body></html> - Please enter the receivers address - Lütfen alıcıların adreslerini girin - - - ADDRESS - ADRES - - - Enter your encrypted message - Şifreli mesaj + Wallet Key Backup + - MESSAGE - YENI MESAJ + ■ Make a backup of your wallet file + ■ Cüzdan dosyanızın bir yedeğini alın - ADDRESS BOOK - ADRES DEFTERİ + ■ Be aware of phishing websites and programs + ■ Sahte web sitelerine ve zararlı programlara dikkat edin - NODE FEE - NODE ÜCRET + ■ Store a copy of your seed in a safe place + ■ Seed'inizin bir kopyasını güvenli bir yerde saklayın - Walllet Address :: QR Code - QR Code + We care about your safety: Please read the following + Güvenliğinize önem veriyoruz: Lütfen aşağıdakileri okuyun - Transaction details - İşlem detayları + SHOW SEED + Seed Göster - Transaction Details - İşlem detayları + PRIVATE KEYS + - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Lato'; font-size:14px; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + TRACKING KEY - CLOSE - KAPAT + Advanced Users: + - Frame + Your wallet is an older format that does not support mnemonic seeds. +Please generate a new wallet in order to get the 25 word Mnemonic seed and transfer your existing funds to your new wallet. - TextLabel + YOUR TRACKING KEY - Transaction History - Işlem Geçmişi + Walllet Address :: QR Code + QR Code - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + Wallet Address QR Code - TRANSACTION HISTORY - İŞLEM GEÇMİŞİ + Transaction details + İşlem detayları + + + TRANSACTION DETAILS + İŞLEM DETAYLARI - EXPORT TO CSV + Transaction Details - BACK - GERİ + CLOSE + KAPAT - Frame + Transaction @@ -1371,10 +1362,6 @@ p, li { white-space: pre-wrap; } Enter a label for this address to add it to your address book Bu adres için adres defterinize eklemek üzere bir etiket girin - - ... - - Label Etiket @@ -1389,23 +1376,23 @@ p, li { white-space: pre-wrap; } Error: %1 - + Hatası %1 Unable to check for update Güncelleme kontrol edilemiyor - The Conceal Wallet - Conceal Cüzdanım + &Pay to + &Ödemek Invalid address Geçersiz adres - Empty label - + Invalid payment ID + Geçersiz ödeme kimliği Label @@ -1419,26 +1406,6 @@ p, li { white-space: pre-wrap; } Payment ID - - ENABLE - AÇIK - - - DISABLE - KAPALI - - - Language settings saved - Dil ayarları kaydedildi - - - Please restart the wallet for the new settings to take effect. - Yeni ayarların geçerli olması için lütfen cüzdanı yeniden başlatın. - - - Connection settings saved - - Password not confirmed Parola onaylanmadı @@ -1464,7 +1431,7 @@ p, li { white-space: pre-wrap; } - xternal port for p2p network protocol (if port forwarding used with NAT) + External port for p2p network protocol (if port forwarding used with NAT) @@ -1511,6 +1478,30 @@ p, li { white-space: pre-wrap; } Run application in minimized mode + + Conceal Desktop + + + + New Contact + + + + Edit Contact + + + + Invalid address + Geçersiz adres + + + Invalid payment ID + Geçersiz ödeme kimliği + + + Contact with such label already exists. + + Status Durum @@ -1584,48 +1575,56 @@ p, li { white-space: pre-wrap; } Harcandı - Weeks - Hafta + Wallet file + Cüzdan dosyası - Quarters - Çeyrek + Wallets (*.wallet) + cüzdan (*.wallet) - %1 %2 - + Wallet file + Cüzdan dosyası - %1 + 0.001 (Node Fee) %2 - + Wallets (*.wallet) + cüzdan (*.wallet) + + + Wallet file + Cüzdan dosyası + + + Wallets (*.wallet) + cüzdan (*.wallet) - New deposits only work after height 108,000 + Private Spend Key is not valid. The private spend key you entered is not valid. - You don't have enough balance in your account! - Hesabınızda yeterli bakiye yok! + Private View Key is not valid. The private view key you entered is not valid. + - Deposit Confirmation - Mevduat Onayı + The wallet file already exists. Please change the wallet path and try again. + - Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? - Fonlar bir mevduat için kilitlendiğinde, vadesi bitene kadar bu fonlara erişemeyeceğinizi lütfen unutmayın. Devam etmek istediğinize emin misiniz? + Key is not valid. The private spend key you entered is not valid. + - New investments only work after height 108,000 - Yeni yatırımlar yalnızca 108.000'inci blok yüksekliğinden sonra çalışır + Key is not valid. The private view key you entered is not valid. + - Investment Confirmation - Yatırım Onayı + Wallet file + Cüzdan dosyası - Please note that once funds are locked in an investment, you will not have access to those funds until maturity. Are you sure you want to proceed? - Fonlar bir yatırım için kilitlendiğinde, vadesi bitene kadar bu fonlara erişemeyeceğinizi lütfen unutmayın. Devam etmek istediğinize emin misiniz? + Wallets (*.wallet) + cüzdan (*.wallet) Wallet file @@ -1635,6 +1634,18 @@ p, li { white-space: pre-wrap; } Wallets (*.wallet) cüzdan (*.wallet) + + Invalid seed. Seed phrase is not 25 words! Please try again. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Invalid seed. Please check your seed and try again. + + Wallet file Cüzdan dosyası @@ -1651,6 +1662,34 @@ p, li { white-space: pre-wrap; } Wallets (*.wallet) cüzdan (*.wallet) + + Tracking key is not valid. The tracking key you entered is not valid. + + + + The wallet file already exists. Please change the wallet path and try again. + + + + Key is not valid. The public spend key you entered is not valid. + + + + Key is not valid. The public view key you entered is not valid. + + + + Key is not valid. The private spend key you entered is not valid. + + + + Key is not valid. The private view key you entered is not valid. + + + + Conceal Desktop %1 + + About %1 Wallet Hakkında %1 Cüzdan @@ -1675,6 +1714,14 @@ p, li { white-space: pre-wrap; } Open .wallet/.keys file + + Show + + + + Quit Conceal Desktop + + Wallet (*.wallet *.keys) Cüzdan (*.wallet *.keys) @@ -1690,7 +1737,8 @@ p, li { white-space: pre-wrap; } Your wallet will be reset and restored from blockchain. Are you sure? - + Cüzdanınız sıfırlanacak ve blockchain'den geri yüklenecek. +Emin misiniz? Wallet error @@ -1702,7 +1750,7 @@ Are you sure? Tracking key is not valid - Girdiğiniz izleme anahtarı geçerli değil. + Girdiğiniz izleme anahtarı geçerli değil The tracking key you entered is not valid. @@ -1729,280 +1777,443 @@ Are you sure? Girdiğiniz private view key geçerli değil. - Conection settings saved - Bağlantı ayarları kaydedildi + Save message + Mesajı kaydet + + + File already exists + Dosya zaten var - Please restart the wallet for the new settings to take effect. - Yeni ayarların geçerli olması için lütfen cüzdanı yeniden başlatın. + Warning! File already exists and will be overwritten, are you sure? + Uyarı! Dosya zaten var ve üzerine yazılacak, emin misiniz? + + + File error + Dosya hatası + + + Date + + + + Type + Tür + + + Height + Yükseklik + + + Message + Mesaj + + + Transaction Hash + İşlem hash'i + + + Message Size + + + + Transaction hash + İşlem hash'i + + + Amount + Miktar + + + Message size + Mesaj boyutu + + + Out + + + + In + + + + Password not confirmed + Parola onaylanmadı + + + &Pay to + &Ödemek + + + Month(s) + + + + CLICK TO DISABLE + KAPAT + + + CLICK TO ENABLE + ETKİNLEŞTİRME + + + Current Wallet + Mevcut Cüzdan + + + TOTAL + TOPLAM + + + Tracking Wallet + Cüzdanı görüntüle + + + Wallet + Cüzdan + + + Synchronization + Senkronizasyon + + + Could not check Conceal ID + + + + Failed to lookup Conceal ID + + + + Data updated + + + + Invalid recipient address + Geçersiz alıcı adresi + + + Invalid payment ID + Geçersiz ödeme kimliği + + + Transaction Confirmation + İşlem Onayı + + + Please note that there is no payment ID, are you sure you want to proceed? + Lütfen ödeme kimliği girmediğinizi unutmayın, devam etmek istediğinizden emin misiniz? + + + Insufficient funds. Please ensure that you have enough funds for the amount plus fees. + Yetersiz bakiye. Lütfen tutar artı ücretler için yeterli paranızın olduğundan emin olun. + + + Message too long. Please ensure that the message is less than 260 characters. + Mesaj çok uzun. Lütfen mesajın 260 karakterden az olduğundan emin olun. + + + You don't have enough balance in your account! + Hesabınızda yeterli bakiye yok! + + + Deposit Confirmation + Mevduat Onayı + + + Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? + Fonlar bir mevduat için kilitlendiğinde, vadesi bitene kadar bu fonlara erişemeyeceğinizi lütfen unutmayın. Devam etmek istediğinize emin misiniz? + + + Auto Optimization + Otomatik Optimizasyon + + + Auto Optimization Disabled. + Otomatik Optimizasyon Devre Dışı. + + + Auto Optimization Enabled. Your wallet will be optimized automatically every 15 minutes. + Otomatik Optimizasyon Etkin. Cüzdanınız her 15 dakikada bir otomatik olarak optimize edilecektir. + + + Market data from coingecko.com - Last updated: %1 + - Language settings saved - Dil ayarları kaydedildi + Portfolio ( + - Save message - Mesajı kaydet + Available Balance: + - File already exists - Dosya zaten var + This is a tracking wallet. +This action is not available. + - Warning! File already exists and will be overwritten, are you sure? - Uyarı! Dosya zaten var ve üzerine yazılacak, emin misiniz? + BANKING + BANKACILIK - File error - Dosya hatası + TRANSACTIONS + İŞLEMLER - Date - + CONCEAL.NETWORK + CONCEAL CÜZDANI - Type - Tür + ABOUT + HAKKINDA - Height - Yükseklik + WALLET SETTINGS + - Message - Mesaj + INBOX + GELEN KUTUSU - Transaction hash - İşlem hash'i + SEND FUNDS + FONLARI GÖNDER - Amount - Miktar + NEW MESSAGE + YENİ MESAJ - Message size - Mesaj boyutu + Address copied to clipboard + - Out + Synchronization is in progress. +This option is not available until your wallet is synchronized with the network. - In - + SEND MESSAGE + MESAJ GÖNDER - Password not confirmed - Parola onaylanmadı + ADDRESS BOOK + ADRES DEFTERİ - Node URL + Warning: you have reached the maximum message size of 260 characters. - SYNCHRONIZING - SENKRONIZE EDILIYOR + Auto optimization disabled + - About Conceal + Auto optimization enabled. +Your wallet will be optimized automatically every 15 minutes. - About QT - + Language and Currency settings saved + Dil ve Para Birimi ayarları kaydedildi - Disclaimer - + Please restart the wallet for the new settings to take effect. + Yeni ayarların geçerli olması için lütfen cüzdanı yeniden başlatın. - Links + Connection settings saved - Import Seed + Invalid address + Geçersiz adres + + + Payment ID copied to clipboard - Import Secret Keys - Anahtarlar içe aktarılıyor + Address Book + Adres Defteri - Import GUI Key - GUI anahtarını içe aktar + Incorrect password + Yanlış Parola - Open Wallet - Cüzdani Aç + Wrong password. + Yanlış Parola - Create Wallet - Cüzdan Oluştur + Lock Wallet + Kilit Cüzdanı - Backup Wallet - Cüzdanı yedekle + Would you like to lock your wallet? While your wallet is locked, it will continue to synchronize with the network. You will need to enter your wallet password to unlock it. + Cüzdanınızı kilitlemek ister misiniz? Cüzdanınız kilitliyken, ağ ile senkronize olmaya devam edecektir. Kilidini açmak için cüzdan şifrenizi girmeniz gerekecektir. - Import Wallet - Cüzdanı İçe Aktar + Select CSV file + - Close Wallet - Cüzdanı Kapat + Tracking Key + Salt Görüntüleme Anahtarı - Encrypt Wallet - Cüzdanı Şifrele + Received CCX + Alınan CCX - Change Password - Parolayı değiştir + New Block + - Close to Tray On - Görev Çubuğuna Aç Kapalı + Send CCX + Gönderilen CCX - Close to Tray Off - Görev Çubuğuna Kapat Kapalı + Incoming TX + - Minimize to Tray On - Görev Çubuğuna Küçült Açık + Outgoing TX + - Minimize to Tray Off - Görev Çubuğuna Küçült Kapalı + Optimization + Optimize ediliyor - Wallet - Cüzdan + New Deposit + Yeni Mevduat - Synchronization - Senkronizasyon + Deposit Unlock + - Pool URL + Date - GUI Key - GUI anahtarını içe aktar + Type + Tür - Private Spend-Key - + Address + Adres - Private View-Key - + Amount + Miktar - Seed - + Fee + Ücret - Failed to lookup Conceal ID - + Height + Yükseklik - Invalid recipient address - Geçersiz alıcı adresi + Payment ID + - Invalid payment ID - Geçersiz ödeme kimliği + Message + Mesaj - Transaction Confirmation - İşlem Onayı + Transaction Hash + İşlem hash'i - Please note that there is no payment ID, are you sure you want to proceed? - Lütfen ödeme kimliği girmediğinizi unutmayın, devam etmek istediğinizden emin misiniz? + unconfirmed + - Incorrect fee value - Yanlış ücret değeri + confirmations + Onayı - Incorrect fee - Yanlış ücret değeri + me (%1) + - Select CSV file + (n/a) - DATE - TARIH + Unconfirmed + - TYPE + Confirmed - ADDRESS - ADRES + not found + - AMOUNT - MIKTAR + Importing keys + Anahtarlar içe aktarılıyor - FEE - ÜCRET + Saving data + Veriler kaydediliyor - HEIGHT - + SENDING TRANSACTION + Gönderiliyor - PAYMENT ID - Payment ID + Opening wallet + Cüzdan açılıyor - MESSAGE - YENI MESAJ + Creating wallet + Cüzdan oluşturuluyor - HASH - + Sending transaction + İşlem gönderiliyor - unconfirmed - + Optimizing wallet + Cüzdan optimize ediliyor - confirmations - Onayı + Sending message + Mesaj gönderiliyor - %1 / %2 - + Creating deposit + Mevduat oluşturuluyor - me (%1) - + Withdrawing deposit + Mevduat çekiliyor - (n/a) - + Ready + Hazır - Importing keys - Anahtarlar içe aktarılıyor + Synchronizing + Senkronize ediliyor - Saving data - Veriler kaydediliyor + Synchronized + Senkronize edildi - SENDING TRANSACTION - Gönderiliyor + Warning + Uyarı Optimizing @@ -2021,8 +2232,8 @@ Are you sure? Para çekiliyor - Ready - Hazır + READY + HAZIR SYNCHRONIZING @@ -2049,7 +2260,28 @@ Are you sure? Bir problem oluştu, lütfen cüzdanınızı yeniden başlatın. - <span style='color: orange;'>%1</span><br />Height: %2<br />%4<br />%3 + Unable to create the wallet. + + + + Unable to create a new wallet at the path provided. +Please choose another location. + + + + New wallet file + Cüzdan dosyası + + + Wallets (*.wallet) + cüzdan (*.wallet) + + + You must confirm that you have safely stored the mnemonic seed and understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + + + The words entered does not match the seed. Please try again. @@ -2068,6 +2300,70 @@ Are you sure? WELCOME TO THE CONCEAL WALLET CONCEAL CÜZDANINA HOŞ GELDİNİZ + + Create a new wallet address along with a secret seed phrase + + + + Already have a wallet? open the wallet and access your assets + + + + Import an existing wallet with the secret seed phrase and access your CCX + + + + Advanced users can import using other keys + + + + Create a new wallet + + + + Wallet Path + Cüzdan Yolu + + + Where would you like to save your wallet? + + + + Choose a path where you would like to save your wallet. + + + + BACK + GERİ + + + Mnemonic seed + + + + Please save the following mnemonic seed safely, it is used to recover your wallet (or import it on another machine). + + + + Don't lose your seed or you might lose your wallet (and funds) forever. + + + + Copy seed + + + + Mnemonic seed confirmation + + + + Enter your seed to confirm you have saved it. + + + + I have safely stored the mnemonic seed and I understand that the Conceal Team cannot restore this wallet and is not responsible for loss of funds. + + ■ Conceal is a decentralized blockchain bank. ■ Conceal, merkeziyetsiz bir blok zinciri bankasıdır. @@ -2084,16 +2380,20 @@ Are you sure? ■ You control the private keys to your funds. ■ Fonlarınıza erişebileceğiniz private key'lerin kontrolü sizdedir. - - The Conceal Wallet - Conceal Cüzdanım - NEXT İLERİ - <html><head/><body><p><img src=":/images/conceal-small.png"/></p></body></html> + WELCOME TO CONCEAL DESKTOP + + + + ■ Conceal Desktop is a free, open-source interface. + + + + How does Conceal Desktop work? @@ -2208,10 +2508,6 @@ Are you sure? advanced users can import using other keys ileri düzey kullanıcılar, diğer anahtarları kullanarak içe aktarabilir - - Dialog - - Private Spend Key Cüzdanınızı gizli harcama ve yeniden görüntüleme tuşlarıyla yeniden yaratınz @@ -2220,14 +2516,6 @@ Are you sure? Wallet Path Cüzdan Yolu - - Private View Key - - - - ... - - CANCEL İPTAL @@ -2236,30 +2524,14 @@ Are you sure? IMPORT İÇE AKTAR - - Import Private Keys - - Recreate your wallet with the secret spend and view keys Cüzdanınızı gizli harcama ve yeniden görüntüleme tuşlarıyla yeniden yaratın - - Dialog - - Optimize Wallet Cüzdanı optimize et - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:15px; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Lato'; font-size:15px;">This process will optimize your wallet for large transactions. The optimization will take approximately 22 minutes. Please note that you will not be able to spend any of your funds until the optimization process is complete. In some cases, the wallet might need optimization more than once.</span></p></body></html> - - Optimization recommended for this wallet Bu cüzdan için optimizasyon önerilir @@ -2272,8 +2544,4 @@ p, li { white-space: pre-wrap; } CLOSE KAPAT - - HELP - YARDIM - diff --git a/src/languages/tr.ts b/src/languages/tr.ts index dd343cc4..95e955af 100644 --- a/src/languages/tr.ts +++ b/src/languages/tr.ts @@ -710,7 +710,7 @@ Lütfen bekle... - + NEW MESSAGE YENİ MESAJ @@ -748,32 +748,32 @@ Lütfen bekle... BİZE ULAŞIN - + Discord - + Telegram - + Twitter - + Market Place - + Medium - + TradeOgre @@ -827,127 +827,132 @@ Lütfen bekle... TARİHSEL VERİ - + Website - + + Web Wallet + + + + Make Deposit - + Click to Copy - + Settings - + Show QR Code - + Lock Wallet Kilit Cüzdanı - + OPTIMIZE OPTİMİZE ET - + START - + Font - + Minimize to tray Simge durumuna küçült - + Start Maximized - + Font Size - + MESSAGE OVERVIEW MESAJ GENEL BAKIŞ - + Connection Bağlantı - + Custom Remote Node Özel Uzak Node - + Built-in Node Yerleşik Düğüm - + Automatic Remote Node Otomatik Uzak Node - + Set connection type Bağlantı ayarları - - + + SAVE KAYDET - + Optimization Optimize ediliyor - + Auto optimization Otomatik Optimizasyon - + Large transactions Büyük Işlemler - + Rescan wallet Cüzdanı Sıfırla - - - - - + + + + + ENABLE AÇIK @@ -960,108 +965,113 @@ Lütfen bekle... Cüzdanı Sıfırla - + (Optimization not required) (Optimizasyon gerekmez) - + Preferences Tercihler - + Close to tray Simge durumuna kapat - + Language Dil - + Currency Para birimi - + Chinese Çince - + English Ingilizce - + Russian Rusça - + + French + Fransızca + + + Turkish Türk - + Wallet Operations Cüzdan - + OPEN WALLET Cüzdani Aç - + NEW WALLET Cüzdan dosyası - + ENCRYPT WALLET Cüzdanı Şifrele - + New/Existing Yeni veya mevcut cüzdan - + Import Içe Aktar - + Backup Yedekle - + IMPORT TRACKING WALLET Salt Görüntülenebilir Cüzdani Içe Aktar - + BACKUP KEYS YEDEKLE - + IMPORT PRIVATE KEYS PRIVATE KEY'LERİ İÇE AKTAR - + BACKUP WALLET FILE YEDEKLE CÜZDAN DOSYASI - + IMPORT SEED SEED İÇE AKTAR @@ -1229,85 +1239,90 @@ p, li { white-space: pre-wrap; } - - - - - - - - - - sm + + BUY/MARKETS + + + + + TOOLS - - BitMart + + + + + + + + + + sm - + Wiki - + COMMUNITY - + Withdraw Deposit - + NEW DEPOSIT YENİ MEVDUAT - + How long should your deposit last? Depozitonuz ne kadar sürer? - + Auto refresh data - + Status Durum - + How much do you want to deposit? Ne kadar yatırmak istiyorsunuz? - + Interest rate: Faiz: - + Rewards you will earn: Kazanacağınız ödüller: - + Fees for this deposit: Bu depozito ücretleri: - + Length on the blockchain: Uzunluk: - + Deposit Details Mevduat Detayları @@ -1316,7 +1331,7 @@ p, li { white-space: pre-wrap; } YENİ MEVDUAT - + DEPOSIT HISTORY TARİHSEL VERİ @@ -1325,7 +1340,7 @@ p, li { white-space: pre-wrap; } PARA ÇEK - + CONCEAL.NETWORK CONCEAL CÜZDANI @@ -1394,47 +1409,47 @@ p, li { white-space: pre-wrap; } - + GitHub - + A complete history of all your deposits. Double-click an individual deposit for a more detailed view. - + This wallet is locked. Please click below to unlock your wallet. Bu cüzdan kilitli. Cüzdanınızın kilidini açmak için lütfen aşağıya tıklayın. - + UNLOCK WALLET KILIT AÇILMA CÜZDAN - + Current Wallet Mevcut Cüzdan - + Portfolio (CCX) - + A list of incoming and outgoing messages for this wallet. - + Portfolio (USD) - + Current Height @@ -1475,15 +1490,15 @@ p, li { white-space: pre-wrap; } QObject - + blocks + - Error @@ -1505,7 +1520,7 @@ Check that port %2 is not already in use. - + STARTING WALLET CÜZDAN YÜKLENİYOR @@ -1524,12 +1539,12 @@ Would you like to go to the download page? - + Conceal Desktop Update - + There is an update available. Would you like to go to the download page? @@ -1730,7 +1745,7 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans Updater - + Error: %1 Hatası %1 @@ -1757,17 +1772,17 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::AddressBookModel - + Label Etiket - + Address Adres - + Payment ID @@ -1783,95 +1798,95 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::CommandLineParser - + Used to deploy test nets. Checkpoints and hardcoded seeds are ignored, network id is changed. Use it with –data-dir flag. The wallet must be launched with –testnet flag - + Interface for p2p network protocol - + ip - + Port for p2p network protocol - - + + port - + External port for p2p network protocol (if port forwarding used with NAT) - + Allow local ip add to peer list, mostly in debug purposes - + Manually add peer to local peerlist - + peer - + Specify list of peers to connect to and attempt to keep the connection open - - + + node - + Specify list of peers to connect to only. If this option is given the options add-priority-node and seed-node are ignored - + Connect to a node to retrieve peer addresses, and disconnect - + Do not announce yourself as peerlist candidate - + Specify data directory - + directory - + Run application in minimized mode - + Conceal Desktop @@ -1907,92 +1922,92 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans WalletGui::DepositModel - + Status Durum - + Amount Miktar - + Interest Faiz - + Sum Toplam - + Rate Oran - + Term - + Unlock height Kilit açılma yüksekliği - + Unlock time Kilit açılma zamanı - + Creating transaction İşlem oluşturuluyor - + Creating height Yükseklik oluşturuluyor - + Creating time Zaman oluşturuluyor - + Spending transaction İşlem harcanıyor - + Spending height Yükseklik harcanıyor - + Spending time Zaman harcanıyor - + Type Tür - + Locked Kilitli - + Unlocked Kilidi Açıldı - + Spent Harcandı @@ -2179,54 +2194,54 @@ Please generate a new wallet in order to get the 25 word Mnemonic seed and trans Cüzdan dosyası - + Wallets (*.wallet) cüzdan (*.wallet) - + Open .wallet/.keys file - + Show - + Quit Conceal Desktop - + Wallet (*.wallet *.keys) Cüzdan (*.wallet *.keys) - + Backup wallet to... Cüzdanı yedekle… - + Warning Uyarı - + Your wallet will be reset and restored from blockchain. Are you sure? Cüzdanınız sıfırlanacak ve blockchain'den geri yüklenecek. Emin misiniz? - + Wallet error - + Wallet Cüzdan @@ -2285,32 +2300,32 @@ Emin misiniz? WalletGui::MessagesModel - + Date - + Type Tür - + Height Yükseklik - + Message Mesaj - + Transaction Hash İşlem hash'i - + Message Size @@ -2319,7 +2334,7 @@ Emin misiniz? İşlem hash'i - + Amount Miktar @@ -2328,12 +2343,12 @@ Emin misiniz? Mesaj boyutu - + Out - + In @@ -2358,30 +2373,30 @@ Emin misiniz? - - - - - - - - - - + + + + + + + + + + CLICK TO DISABLE KAPAT - - - - - - - - - - + + + + + + + + + + CLICK TO ENABLE ETKİNLEŞTİRME @@ -2406,29 +2421,29 @@ Emin misiniz? Senkronizasyon - - + + Could not check Conceal ID - - + + Failed to lookup Conceal ID - + Data updated - + Invalid recipient address Geçersiz alıcı adresi - + Invalid payment ID Geçersiz ödeme kimliği @@ -2441,27 +2456,27 @@ Emin misiniz? Lütfen ödeme kimliği girmediğinizi unutmayın, devam etmek istediğinizden emin misiniz? - + Insufficient funds. Please ensure that you have enough funds for the amount plus fees. Yetersiz bakiye. Lütfen tutar artı ücretler için yeterli paranızın olduğundan emin olun. - + Message too long. Please ensure that the message is less than 260 characters. Mesaj çok uzun. Lütfen mesajın 260 karakterden az olduğundan emin olun. - + You don't have enough balance in your account! Hesabınızda yeterli bakiye yok! - + Deposit Confirmation Mevduat Onayı - + Please note that once funds are locked in a deposit, you will not have access until maturity. Are you sure you want to proceed? Fonlar bir mevduat için kilitlendiğinde, vadesi bitene kadar bu fonlara erişemeyeceğinizi lütfen unutmayın. Devam etmek istediğinize emin misiniz? @@ -2478,67 +2493,67 @@ Emin misiniz? Otomatik Optimizasyon Etkin. Cüzdanınız her 15 dakikada bir otomatik olarak optimize edilecektir. - + Market data from coingecko.com - Last updated: %1 - + Portfolio ( - + Available Balance: - - - - - - - - - + + + + + + + + + This is a tracking wallet. This action is not available. - + BANKING BANKACILIK - + TRANSACTIONS İŞLEMLER - + CONCEAL.NETWORK CONCEAL CÜZDANI - + ABOUT HAKKINDA - + WALLET SETTINGS - + INBOX GELEN KUTUSU - - + + SEND FUNDS FONLARI GÖNDER @@ -2547,57 +2562,57 @@ This action is not available. YENİ MESAJ - - + + Address copied to clipboard - + Synchronization is in progress. This option is not available until your wallet is synchronized with the network. - - + + SEND MESSAGE MESAJ GÖNDER - + ADDRESS BOOK ADRES DEFTERİ - + Warning: you have reached the maximum message size of 260 characters. - + Auto optimization disabled - + Auto optimization enabled. Your wallet will be optimized automatically every 15 minutes. - + Language and Currency settings saved Dil ve Para Birimi ayarları kaydedildi - - + + Please restart the wallet for the new settings to take effect. Yeni ayarların geçerli olması için lütfen cüzdanı yeniden başlatın. - + Connection settings saved @@ -2606,7 +2621,7 @@ Your wallet will be optimized automatically every 15 minutes. Geçersiz adres - + Payment ID copied to clipboard @@ -2623,17 +2638,17 @@ Your wallet will be optimized automatically every 15 minutes. Yanlış Parola - + Lock Wallet Kilit Cüzdanı - + Would you like to lock your wallet? While your wallet is locked, it will continue to synchronize with the network. You will need to enter your wallet password to unlock it. Cüzdanınızı kilitlemek ister misiniz? Cüzdanınız kilitliyken, ağ ile senkronize olmaya devam edecektir. Kilidini açmak için cüzdan şifrenizi girmeniz gerekecektir. - + Select CSV file @@ -2661,93 +2676,113 @@ Your wallet will be optimized automatically every 15 minutes. Gönderilen CCX - + Incoming TX - + Outgoing TX - + Optimization Optimize ediliyor - + New Deposit Yeni Mevduat + + + Deposit Unlock + + WalletGui::TransactionsModel - + Date - + Type Tür - + Address Adres - + Amount Miktar - + Fee Ücret - + Height Yükseklik - + Payment ID - + Message Mesaj - + Transaction Hash İşlem hash'i - + unconfirmed - + confirmations Onayı - + me (%1) - + (n/a) + + + Unconfirmed + + + + + Confirmed + + + + + not found + + WalletGui::WalletAdapter @@ -2846,12 +2881,12 @@ Your wallet will be optimized automatically every 15 minutes. SENKRONIZE EDILIYOR - + Unencrypted - + Encrypted @@ -2864,7 +2899,7 @@ Your wallet will be optimized automatically every 15 minutes. Uyarı - + There was a problem, please restart your wallet. Bir problem oluştu, lütfen cüzdanınızı yeniden başlatın. diff --git a/src/resources.qrc b/src/resources.qrc index b4fe825f..fed30899 100644 --- a/src/resources.qrc +++ b/src/resources.qrc @@ -56,6 +56,7 @@ images/ru.png images/cn.png images/tr.png + images/fr.png fonts/Poppins-Regular.ttf @@ -70,6 +71,7 @@ languages/cn.qm languages/ru.qm languages/tr.qm + languages/fr.qm languages/qt/qtbase_ru.qm