diff --git a/.gitignore b/.gitignore
index be784024a..2d2c1bf90 100644
--- a/.gitignore
+++ b/.gitignore
@@ -83,7 +83,7 @@ src/qt/bitcoin-qt.includes
*.qm
Makefile
bitcoin-qt
-Bitcoin-Qt.app
+NYC3-Qt.app
background.tiff*
# Unit-tests
diff --git a/Makefile.am b/Makefile.am
index 85674f819..8daffa9c8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,7 +26,7 @@ BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EX
empty :=
space := $(empty) $(empty)
-OSX_APP=Bitcoin-Qt.app
+OSX_APP=NYC3-Qt.app
OSX_VOLNAME = $(subst $(space),-,$(PACKAGE_NAME))
OSX_DMG = $(OSX_VOLNAME).dmg
OSX_BACKGROUND_SVG=background.svg
@@ -98,7 +98,7 @@ $(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS)
$(MKDIR_P) $(@D)
$(INSTALL_DATA) $< $@
-$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: all-recursive
+$(OSX_APP)/Contents/MacOS/NYC3-Qt: all-recursive
$(MKDIR_P) $(@D)
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $@
@@ -108,7 +108,7 @@ $(OSX_APP)/Contents/Resources/Base.lproj/InfoPlist.strings:
OSX_APP_BUILT=$(OSX_APP)/Contents/PkgInfo $(OSX_APP)/Contents/Resources/empty.lproj \
$(OSX_APP)/Contents/Resources/bitcoin.icns $(OSX_APP)/Contents/Info.plist \
- $(OSX_APP)/Contents/MacOS/Bitcoin-Qt $(OSX_APP)/Contents/Resources/Base.lproj/InfoPlist.strings
+ $(OSX_APP)/Contents/MacOS/NYC3-Qt $(OSX_APP)/Contents/Resources/Base.lproj/InfoPlist.strings
osx_volname:
echo $(OSX_VOLNAME) >$@
@@ -133,7 +133,7 @@ $(APP_DIST_DIR)/Applications:
@rm -f $@
@cd $(@D); $(LN_S) /Applications $(@F)
-$(APP_DIST_EXTRAS): $(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Bitcoin-Qt
+$(APP_DIST_EXTRAS): $(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/NYC3-Qt
$(OSX_DMG): $(APP_DIST_EXTRAS)
$(GENISOIMAGE) -no-cache-inodes -D -l -probe -V "$(OSX_VOLNAME)" -no-pad -r -dir-mode 0755 -apple -o $@ dist
@@ -148,7 +148,7 @@ $(APP_DIST_DIR)/.background/$(OSX_BACKGROUND_IMAGE): $(OSX_BACKGROUND_IMAGE_DPIF
$(APP_DIST_DIR)/.DS_Store: $(OSX_DSSTORE_GEN)
$(PYTHON) $< "$@" "$(OSX_VOLNAME)"
-$(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(OSX_APP_BUILT) $(OSX_PACKAGING)
+$(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/NYC3-Qt: $(OSX_APP_BUILT) $(OSX_PACKAGING)
INSTALLNAMETOOL=$(INSTALLNAMETOOL) OTOOL=$(OTOOL) STRIP=$(STRIP) $(PYTHON) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -translations-dir=$(QT_TRANSLATION_DIR) -add-qt-tr $(OSX_QT_TRANSLATIONS) -verbose 2
deploydir: $(APP_DIST_EXTRAS)
diff --git a/README.md b/README.md
index c340f5bbe..c599d6a37 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@ NYC3 (NewYorkCoin3) integration/staging tree
============================================
-Built upon Bitcoin Core 0.18; NYC3 offers a blocktime of 10 seconds, consensus operates using a modified version of the Argon2 password hashing algorithm (http://github.com/barrystyle/argon2s) in a POW configuration and uses LWMA3 to regulate block-spacing.
+Built upon NYC3 Core 0.18; NYC3 offers a blocktime of 10 seconds, consensus operates using a modified version of the Argon2 password hashing algorithm (http://github.com/barrystyle/argon2s) in a POW configuration and uses LWMA3 to regulate block-spacing.
License
diff --git a/contrib/macdeploy/README.md b/contrib/macdeploy/README.md
index 6163734e6..015e27ec4 100644
--- a/contrib/macdeploy/README.md
+++ b/contrib/macdeploy/README.md
@@ -11,5 +11,5 @@ This script should not be run manually, instead, after building as usual:
During the process, the disk image window will pop up briefly where the fancy
settings are applied. This is normal, please do not interfere.
-When finished, it will produce `Bitcoin-Core.dmg`.
+When finished, it will produce `NYC3-Core.dmg`.
diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus
index 9da03e5b0..fb851209b 100755
--- a/contrib/macdeploy/macdeployqtplus
+++ b/contrib/macdeploy/macdeployqtplus
@@ -154,7 +154,7 @@ class FrameworkInfo(object):
class ApplicationBundleInfo(object):
def __init__(self, path):
self.path = path
- appName = "Bitcoin-Qt"
+ appName = "NYC3-Qt"
self.binaryPath = os.path.join(path, "Contents", "MacOS", appName)
if not os.path.exists(self.binaryPath):
raise RuntimeError("Could not find bundle binary for " + path)
@@ -596,7 +596,7 @@ else:
# ------------------------------------------------
-target = os.path.join("dist", "Bitcoin-Qt.app")
+target = os.path.join("dist", "NYC3-Qt.app")
if verbose >= 2:
print("+ Copying source bundle +")
diff --git a/contrib/qos/README.md b/contrib/qos/README.md
index 0ded87c58..df291d22a 100644
--- a/contrib/qos/README.md
+++ b/contrib/qos/README.md
@@ -1,5 +1,5 @@
### QoS (Quality of service) ###
-This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. It limits outbound TCP traffic with a source or destination port of 8333, but not if the destination IP is within a LAN.
+This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the NYC3 network. It limits outbound TCP traffic with a source or destination port of 8333, but not if the destination IP is within a LAN.
This means one can have an always-on bitcoind instance running, and another local bitcoind/bitcoin-qt instance which connects to this node and receives blocks from it.
diff --git a/contrib/qos/tc.sh b/contrib/qos/tc.sh
index 5f9b87d9b..5b0c749c3 100644
--- a/contrib/qos/tc.sh
+++ b/contrib/qos/tc.sh
@@ -9,7 +9,7 @@ export LC_ALL=C
IF="eth0"
#limit of the network interface in question
LINKCEIL="1gbit"
-#limit outbound Bitcoin protocol traffic to this rate
+#limit outbound NYC3 protocol traffic to this rate
LIMIT="160kbit"
#defines the IPv4 address space for which you wish to disable rate limiting
LOCALNET_V4="192.168.0.0/16"
diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in
index 3cd130ce4..c7ca23204 100644
--- a/share/qt/Info.plist.in
+++ b/share/qt/Info.plist.in
@@ -29,16 +29,16 @@
????CFBundleExecutable
- Bitcoin-Qt
+ NYC3-QtCFBundleName
- Bitcoin-Qt
+ NYC3-QtLSHasLocalizedDisplayNameCFBundleIdentifier
- org.bitcoinfoundation.Bitcoin-Qt
+ org.bitcoinfoundation.NYC3-QtCFBundleURLTypes
@@ -60,7 +60,7 @@
UTTypeIdentifierorg.bitcoin.paymentrequestUTTypeDescription
- Bitcoin payment request
+ NYC3 payment requestUTTypeConformsTopublic.data
diff --git a/src/net.cpp b/src/net.cpp
index 2378713ca..ef2dd322a 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -543,7 +543,7 @@ void CNode::copyStats(CNodeStats &stats)
nPingUsecWait = GetTimeMicros() - nPingUsecStart;
}
- // Raw ping time is in microseconds, but show it to user as whole seconds (Bitcoin users should be well used to small numbers with many decimal places by now :)
+ // Raw ping time is in microseconds, but show it to user as whole seconds (NYC3 users should be well used to small numbers with many decimal places by now :)
stats.dPingTime = (((double)nPingUsecTime) / 1e6);
stats.dMinPing = (((double)nMinPingUsecTime) / 1e6);
stats.dPingWait = (((double)nPingUsecWait) / 1e6);
@@ -1445,7 +1445,7 @@ static void ThreadMapPort()
}
}
- std::string strDesc = "Bitcoin " + FormatFullVersion();
+ std::string strDesc = "NYC3 " + FormatFullVersion();
do {
#ifndef UPNPDISCOVER_SUCCESS
diff --git a/src/net_processing.cpp b/src/net_processing.cpp
index d524d626c..c1b9a0bf8 100644
--- a/src/net_processing.cpp
+++ b/src/net_processing.cpp
@@ -33,7 +33,7 @@
#include
#if defined(NDEBUG)
-# error "Bitcoin cannot be compiled without assertions."
+# error "NYC3 cannot be compiled without assertions."
#endif
/** Expiration time for orphan transactions in seconds */
diff --git a/src/nyc3-cli-res.rc b/src/nyc3-cli-res.rc
index 58f8f1e8a..6e78113a4 100644
--- a/src/nyc3-cli-res.rc
+++ b/src/nyc3-cli-res.rc
@@ -16,7 +16,7 @@ BEGIN
BEGIN
BLOCK "040904E4" // U.S. English - multilingual (hex)
BEGIN
- VALUE "CompanyName", "Bitcoin"
+ VALUE "CompanyName", "NYC3"
VALUE "FileDescription", "bitcoin-cli (JSON-RPC client for " PACKAGE_NAME ")"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "bitcoin-cli"
diff --git a/src/nyc3-cli.cpp b/src/nyc3-cli.cpp
index b0e1f67d9..9acb732e0 100644
--- a/src/nyc3-cli.cpp
+++ b/src/nyc3-cli.cpp
@@ -1,5 +1,5 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
-// Copyright (c) 2009-2018 The Bitcoin Core developers
+// Copyright (c) 2009-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
diff --git a/src/nyc3-tx-res.rc b/src/nyc3-tx-res.rc
index 3e49b820b..5051bffd7 100644
--- a/src/nyc3-tx-res.rc
+++ b/src/nyc3-tx-res.rc
@@ -16,8 +16,8 @@ BEGIN
BEGIN
BLOCK "040904E4" // U.S. English - multilingual (hex)
BEGIN
- VALUE "CompanyName", "Bitcoin"
- VALUE "FileDescription", "bitcoin-tx (CLI Bitcoin transaction editor utility)"
+ VALUE "CompanyName", "NYC3"
+ VALUE "FileDescription", "bitcoin-tx (CLI NYC3 transaction editor utility)"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "bitcoin-tx"
VALUE "LegalCopyright", COPYRIGHT_STR
diff --git a/src/nyc3-wallet-res.rc b/src/nyc3-wallet-res.rc
index e9fa2dbb4..6a6b95a4f 100644
--- a/src/nyc3-wallet-res.rc
+++ b/src/nyc3-wallet-res.rc
@@ -16,7 +16,7 @@ BEGIN
BEGIN
BLOCK "040904E4" // U.S. English - multilingual (hex)
BEGIN
- VALUE "CompanyName", "Bitcoin"
+ VALUE "CompanyName", "NYC3"
VALUE "FileDescription", "bitcoin-wallet (CLI tool for " PACKAGE_NAME " wallets)"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "bitcoin-wallet"
diff --git a/src/nyc3-wallet.cpp b/src/nyc3-wallet.cpp
index 515d44d17..ee1107e0e 100644
--- a/src/nyc3-wallet.cpp
+++ b/src/nyc3-wallet.cpp
@@ -1,4 +1,4 @@
-// Copyright (c) 2016-2018 The Bitcoin Core developers
+// Copyright (c) 2016-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
diff --git a/src/nyc3d-res.rc b/src/nyc3d-res.rc
index 3a64acd5d..e4e611eea 100644
--- a/src/nyc3d-res.rc
+++ b/src/nyc3d-res.rc
@@ -16,8 +16,8 @@ BEGIN
BEGIN
BLOCK "040904E4" // U.S. English - multilingual (hex)
BEGIN
- VALUE "CompanyName", "Bitcoin"
- VALUE "FileDescription", "bitcoind (Bitcoin node with a JSON-RPC server)"
+ VALUE "CompanyName", "NYC3"
+ VALUE "FileDescription", "bitcoind (NYC3 node with a JSON-RPC server)"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "bitcoind"
VALUE "LegalCopyright", COPYRIGHT_STR
diff --git a/src/nyc3d.cpp b/src/nyc3d.cpp
index dde75c1b1..63ec7c65b 100644
--- a/src/nyc3d.cpp
+++ b/src/nyc3d.cpp
@@ -1,5 +1,5 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
-// Copyright (c) 2009-2018 The Bitcoin Core developers
+// Copyright (c) 2009-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
@@ -32,8 +32,8 @@ const std::function G_TRANSLATION_FUN = nullptr;
*
* \section intro_sec Introduction
*
- * This is the developer documentation of the reference client for an experimental new digital currency called Bitcoin,
- * which enables instant payments to anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate
+ * This is the developer documentation of the reference client for an experimental new digital currency called NYC3,
+ * which enables instant payments to anyone, anywhere in the world. NYC3 uses peer-to-peer technology to operate
* with no central authority: managing transactions and issuing money are carried out collectively by the network.
*
* The software is a community-driven open source project, released under the MIT license.
@@ -147,7 +147,7 @@ static bool AppInit(int argc, char* argv[])
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
- fprintf(stdout, "Bitcoin server starting\n");
+ fprintf(stdout, "NYC3 server starting\n");
// Daemonize
if (daemon(1, 0)) { // don't chdir (1), do close FDs (0)
diff --git a/src/qt/forms/optionsdialog.ui b/src/qt/forms/optionsdialog.ui
index 240a7a7e9..f24907a73 100644
--- a/src/qt/forms/optionsdialog.ui
+++ b/src/qt/forms/optionsdialog.ui
@@ -252,7 +252,7 @@
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Map port using &UPnP
@@ -272,7 +272,7 @@
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -459,7 +459,7 @@
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.Use separate SOCKS&5 proxy to reach peers via Tor hidden services:
diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui
index 710801ee9..0e434d627 100644
--- a/src/qt/forms/overviewpage.ui
+++ b/src/qt/forms/overviewpage.ui
@@ -73,7 +73,7 @@
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
@@ -459,7 +459,7 @@
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
diff --git a/src/qt/forms/receivecoinsdialog.ui b/src/qt/forms/receivecoinsdialog.ui
index 9aa815ff2..d7666bbd0 100644
--- a/src/qt/forms/receivecoinsdialog.ui
+++ b/src/qt/forms/receivecoinsdialog.ui
@@ -47,7 +47,7 @@
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.&Message:
@@ -93,7 +93,7 @@
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui
index 6c750c985..83bdb61d7 100644
--- a/src/qt/forms/sendcoinsentry.ui
+++ b/src/qt/forms/sendcoinsentry.ui
@@ -199,7 +199,7 @@
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.Qt::PlainText
diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h
index 736ff13a4..73cb334e7 100644
--- a/src/qt/guiconstants.h
+++ b/src/qt/guiconstants.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011-2018 The Bitcoin Core developers
+// Copyright (c) 2011-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
@@ -46,11 +46,11 @@ static const int MAX_URI_LENGTH = 255;
/* Number of frames in spinner animation */
#define SPINNER_FRAMES 36
-#define QAPP_ORG_NAME "Bitcoin"
+#define QAPP_ORG_NAME "NYC3"
#define QAPP_ORG_DOMAIN "bitcoin.org"
-#define QAPP_APP_NAME_DEFAULT "Bitcoin-Qt"
-#define QAPP_APP_NAME_TESTNET "Bitcoin-Qt-testnet"
-#define QAPP_APP_NAME_REGTEST "Bitcoin-Qt-regtest"
+#define QAPP_APP_NAME_DEFAULT "NYC3-Qt"
+#define QAPP_APP_NAME_TESTNET "NYC3-Qt-testnet"
+#define QAPP_APP_NAME_REGTEST "NYC3-Qt-regtest"
/* One gigabyte (GB) in bytes */
static constexpr uint64_t GB_BYTES{1000000000};
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h
index cbec73a88..48b868715 100644
--- a/src/qt/guiutil.h
+++ b/src/qt/guiutil.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011-2018 The Bitcoin Core developers
+// Copyright (c) 2011-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
@@ -36,7 +36,7 @@ class QUrl;
class QWidget;
QT_END_NAMESPACE
-/** Utility functions used by the Bitcoin Qt UI.
+/** Utility functions used by the NYC3 Qt UI.
*/
namespace GUIUtil
{
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp
index 499af9fa0..136d97695 100644
--- a/src/qt/intro.cpp
+++ b/src/qt/intro.cpp
@@ -1,4 +1,4 @@
-// Copyright (c) 2011-2018 The Bitcoin Core developers
+// Copyright (c) 2011-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
@@ -126,7 +126,7 @@ Intro::Intro(QWidget *parent, uint64_t blockchain_size, uint64_t chain_state_siz
.arg(tr(PACKAGE_NAME))
.arg(m_blockchain_size)
.arg(2009)
- .arg(tr("Bitcoin"))
+ .arg(tr("NYC3"))
);
ui->lblExplanation2->setText(ui->lblExplanation2->text().arg(tr(PACKAGE_NAME)));
@@ -145,7 +145,7 @@ Intro::Intro(QWidget *parent, uint64_t blockchain_size, uint64_t chain_state_siz
}
requiredSpace += m_chain_state_size;
ui->sizeWarningLabel->setText(
- tr("%1 will download and store a copy of the Bitcoin block chain.").arg(tr(PACKAGE_NAME)) + " " +
+ tr("%1 will download and store a copy of the NYC3 block chain.").arg(tr(PACKAGE_NAME)) + " " +
storageRequiresMsg.arg(requiredSpace) + " " +
tr("The wallet will also be stored in this directory.")
);
diff --git a/src/qt/intro.h b/src/qt/intro.h
index b537c94f7..05ad15f82 100644
--- a/src/qt/intro.h
+++ b/src/qt/intro.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011-2018 The Bitcoin Core developers
+// Copyright (c) 2011-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
diff --git a/src/qt/locale/nyc3_af.ts b/src/qt/locale/nyc3_af.ts
index e95796eee..ded9c4780 100644
--- a/src/qt/locale/nyc3_af.ts
+++ b/src/qt/locale/nyc3_af.ts
@@ -62,11 +62,11 @@
Ontvanger adresse
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Hierdie is die adresse vanwaar u Bitcoin betalings stuur. U moet altyd die bedrag en die adres van die ontvanger nagaan voordat u enige munte stuur.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Hierdie is die adresse vanwaar u NYC3 betalings stuur. U moet altyd die bedrag en die adres van die ontvanger nagaan voordat u enige munte stuur.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Hierdie is die adresse waar u Bitcoins sal ontvang. Ons beveel aan dat u 'n nuwe adres kies vir elke transaksie
@@ -323,7 +323,7 @@
Send coins to a NYC3 address
- Stuur munte na 'n Bitcoin adres
+ Stuur munte na 'n NYC3 adresBackup wallet to another location
@@ -346,8 +346,8 @@
&Verifieer boodskap...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -370,12 +370,12 @@
Kodifiseer die private sleutes wat aan jou beursie gekoppel is.
- Sign messages with your Bitcoin addresses to prove you own them
- Onderteken boodskappe met u Bitcoin adresse om u eienaarskap te bewys
+ Sign messages with your NYC3 addresses to prove you own them
+ Onderteken boodskappe met u NYC3 adresse om u eienaarskap te bewys
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifieër boodskappe om seker te maak dat dit met die gespesifiseerde Bitcoin adresse
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifieër boodskappe om seker te maak dat dit met die gespesifiseerde NYC3 adresse&File
@@ -504,8 +504,8 @@
Inkomende transaksie
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- 'N fatale fout het voorgekom. Bitcoin kan nie meer veilig voortgaan nie en sal nou toemaak.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ 'N fatale fout het voorgekom. NYC3 kan nie meer veilig voortgaan nie en sal nou toemaak.
@@ -695,7 +695,7 @@
The entered address "%1" is not a valid NYC3 address.
- Die ingevoerde adres "%1" is nie 'n geldige Bitcoin adres nie.
+ Die ingevoerde adres "%1" is nie 'n geldige NYC3 adres nie.Could not unlock wallet.
@@ -767,8 +767,8 @@
Gebruik 'n persoonlike data gids:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3The wallet will also be stored in this directory.
@@ -1121,7 +1121,7 @@
Enter a NYC3 address (e.g. %1)
- Voer in 'n Bitcoin adres (bv. %1)
+ Voer in 'n NYC3 adres (bv. %1)%1 d
@@ -2040,7 +2040,7 @@ word die fooi eweredig verdeel.
bitcoin-coreNYC3
- Bitcoin Kern
+ NYC3 KernError loading %s
diff --git a/src/qt/locale/nyc3_af_ZA.ts b/src/qt/locale/nyc3_af_ZA.ts
index 5bb0b0c2e..1bd80ce86 100644
--- a/src/qt/locale/nyc3_af_ZA.ts
+++ b/src/qt/locale/nyc3_af_ZA.ts
@@ -62,12 +62,12 @@
Ontvang adresse
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Dit is jou Bitcoin-adresse vir die stuur van betalings. Kontroleer altyd die bedrag en die ontvangsadres voordat u munte stuur.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Dit is jou NYC3-adresse vir die stuur van betalings. Kontroleer altyd die bedrag en die ontvangsadres voordat u munte stuur.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Dit is jou Bitcoin-adresse vir die stuur van betalings. Kontroleer altyd die bedrag en die ontvangsadres voordat jy munte stuur.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Dit is jou NYC3-adresse vir die stuur van betalings. Kontroleer altyd die bedrag en die ontvangsadres voordat jy munte stuur.&Copy Address
@@ -327,7 +327,7 @@
Send coins to a NYC3 address
- Stuur muntstukke na 'n Bitcoin adres
+ Stuur muntstukke na 'n NYC3 adresBackup wallet to another location
@@ -350,8 +350,8 @@
&Verifieer boodskap...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -374,12 +374,12 @@
Versleutel die private sleutels wat aan u beursie behoort
- Sign messages with your Bitcoin addresses to prove you own them
- Teken boodskappe met u Bitcoin adresse om te bewys dat u hul besit
+ Sign messages with your NYC3 addresses to prove you own them
+ Teken boodskappe met u NYC3 adresse om te bewys dat u hul besit
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Bevestig boodskappe om te verseker dat hulle geteken was met gespesifiseerde Bitcoin adresse
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Bevestig boodskappe om te verseker dat hulle geteken was met gespesifiseerde NYC3 adresse&File
@@ -454,8 +454,8 @@
Op datum
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Wys die %1 hulpboodskap om 'n lys met moontlike Bitcoin bevel-lyn opsies te verkry
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Wys die %1 hulpboodskap om 'n lys met moontlike NYC3 bevel-lyn opsies te verkry&Window
@@ -528,8 +528,8 @@
Beursie is <b>versleutel</b> en is tans <b>gesluit</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- 'n Noodlottige fout het voorgekom. Bitcoin kan nie langer voortgaan nie en sal afsluit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ 'n Noodlottige fout het voorgekom. NYC3 kan nie langer voortgaan nie en sal afsluit.
@@ -719,7 +719,7 @@
The entered address "%1" is not a valid NYC3 address.
- Die ingeskrewe adres "%1" is nie 'n geldige Bitcoin adres nie.
+ Die ingeskrewe adres "%1" is nie 'n geldige NYC3 adres nie.Could not unlock wallet.
@@ -783,8 +783,8 @@
Welkom by %1.
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3The wallet will also be stored in this directory.
diff --git a/src/qt/locale/nyc3_am.ts b/src/qt/locale/nyc3_am.ts
index 1dcc09a13..2bed0e77d 100644
--- a/src/qt/locale/nyc3_am.ts
+++ b/src/qt/locale/nyc3_am.ts
@@ -62,11 +62,11 @@
የመቀበያ አድራሻዎች
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.እነኚ የቢትኮይን ክፍያ የመላኪያ አድራሻዎችዎ ናቸው:: ገንዘብ/ኮይኖች ከመላክዎ በፊት መጠኑን እና የመቀበያ አድራሻውን ሁልጊዜ ያረጋግጡ::
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.እነኚ የቢትኮይን ክፍያ የመቀበያ አድራሻዎችዎ ናቸው:: ለእያንዳንዱ ግብይት አዲስ የመቀበያ አድራሻ እንዲጠቀሙ ይመከራል::
diff --git a/src/qt/locale/nyc3_ar.ts b/src/qt/locale/nyc3_ar.ts
index 8fc691234..d5fd34f53 100644
--- a/src/qt/locale/nyc3_ar.ts
+++ b/src/qt/locale/nyc3_ar.ts
@@ -66,12 +66,12 @@
عناوين الاستقبال
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- هذه هي عناوين Bitcoin التابعة لك من أجل إرسال الدفعات. تحقق دائما من المبلغ و عنوان المرسل المستقبل قبل إرسال العملات
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ هذه هي عناوين NYC3 التابعة لك من أجل إرسال الدفعات. تحقق دائما من المبلغ و عنوان المرسل المستقبل قبل إرسال العملات
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- هذه هي عناوين Bitcoin التابعة لك من أجل إستقبال الدفعات. ينصح استخدام عنوان جديد من أجل كل صفقة
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ هذه هي عناوين NYC3 التابعة لك من أجل إستقبال الدفعات. ينصح استخدام عنوان جديد من أجل كل صفقة&Copy Address
@@ -358,7 +358,7 @@
&التحقق من الرسالة...
- Bitcoin
+ NYC3بتكوين
@@ -382,12 +382,12 @@
تشفير المفتاح الخاص بمحفظتك
- Sign messages with your Bitcoin addresses to prove you own them
- وقَع الرسائل بواسطة ال: Bitcoin الخاص بك لإثبات امتلاكك لهم
+ Sign messages with your NYC3 addresses to prove you own them
+ وقَع الرسائل بواسطة ال: NYC3 الخاص بك لإثبات امتلاكك لهم
- Verify messages to ensure they were signed with specified Bitcoin addresses
- تحقق من الرسائل للتأكد من أنَها وُقعت برسائل Bitcoin محدَدة
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ تحقق من الرسائل للتأكد من أنَها وُقعت برسائل NYC3 محدَدة&File
@@ -419,7 +419,7 @@
Open a bitcoin: URI or payment request
- فتح URI : Bitcoin أو طلب دفع
+ فتح URI : NYC3 أو طلب دفع&Command-line options
@@ -470,7 +470,7 @@
&عناوين الإستقبال
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsبين اشارة المساعدة %1 للحصول على قائمة من خيارات اوامر البت كوين المحتملة
@@ -562,7 +562,7 @@
المحفظة <b>مشفرة</b> و <b>مقفلة</b> حاليا
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.خطأ فادح حدث . لا يمكن اتمام بيتكوين بامان سيتم الخروج
@@ -833,7 +833,7 @@
استخدام دليل بيانات مخصص:
- Bitcoin
+ NYC3بتكوين
@@ -845,7 +845,7 @@
سيتم تخزين %1 جيجابايت تقريباً من البيانات في هذا الدليل.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.سيقوم %1 بتنزيل نسخة من سلسلة كتل بتكوين وتخزينها.
@@ -1026,7 +1026,7 @@
السماح بالاتصالات الواردة.
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.الاتصال بشبكة البتكوين عبر وكيل SOCKS5.
@@ -1062,7 +1062,7 @@
تور
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.قم بالاتصال بشبكة بتكوين عبر وكيل SOCKS5 منفصل لخدمات تور المخفية.
@@ -1161,7 +1161,7 @@
نمودج
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.قد تكون المعلومات المعروضة قديمة. تتزامن محفظتك تلقائيًا مع شبكة البتكوين بعد إنشاء الاتصال، ولكن هذه العملية لم تكتمل بعد.
@@ -1742,7 +1742,7 @@
&رسالة:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.رسالة اختيارية لإرفاقها بطلب الدفع، والتي سيتم عرضها عند فتح الطلب. ملاحظة: لن يتم إرسال الرسالة مع الدفعة عبر شبكة البتكوين.
@@ -2214,7 +2214,7 @@
أدخل تسمية لهذا العنوان لإضافته إلى قائمة العناوين المستخدمة
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.الرسالة التي تم إرفاقها مع البتكوين: العنوان الذي سيتم تخزينه مع المعاملة للرجوع إليه. ملاحظة: لن يتم إرسال هذه الرسالة عبر شبكة البتكوين.
diff --git a/src/qt/locale/nyc3_be_BY.ts b/src/qt/locale/nyc3_be_BY.ts
index c87544eb1..58124a54e 100644
--- a/src/qt/locale/nyc3_be_BY.ts
+++ b/src/qt/locale/nyc3_be_BY.ts
@@ -66,11 +66,11 @@
адрасы Прымання
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Тут знаходзяцца Біткойн-адрасы для высылання плацяжоў. Заўсёды спраўджвайце колькасць і адрас прызначэння перад здзяйсненнем транзакцыі.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Тут знаходзяцца Біткойн-адрасы для прымання плацяжоў. Пажадана выкарыстоўваць новы адрас для кожнай транзакцыі.
@@ -314,7 +314,7 @@
Праверыць паведамленне...
- Bitcoin
+ NYC3Біткойн
@@ -338,11 +338,11 @@
Зашыфраваць прыватныя ключы, якия належаць вашаму гаманцу
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themПадпісаць паведамленне з дапамогай Біткойн-адраса каб даказаць, што яно належыць вам
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesСпраўдзіць паведамленне з дапамогай Біткойн-адраса каб даказаць, што яно належыць вам
@@ -643,7 +643,7 @@
Вітаем
- Bitcoin
+ NYC3Біткойн
diff --git a/src/qt/locale/nyc3_bg.ts b/src/qt/locale/nyc3_bg.ts
index 6948c9b9d..48a650815 100644
--- a/src/qt/locale/nyc3_bg.ts
+++ b/src/qt/locale/nyc3_bg.ts
@@ -66,11 +66,11 @@
Получаване на адреси
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Това са адресите на получателите на плащания. Винаги проверявайте размера на сумата и адреса на получателя, преди да изпратите монети.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Това са Вашите Биткойн адреси,благодарение на които ще получавате плащания.Препоръчително е да използвате нови адреси за получаване на всяка транзакция.
@@ -358,7 +358,7 @@
&Проверка на съобщение...
- Bitcoin
+ NYC3Биткоин
@@ -382,11 +382,11 @@
Шифроване на личните ключове,които принадлежат на портфейла Ви.
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themПишете съобщения със своя Биткойн адрес за да докажете,че е ваш.
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesПотвърждаване на съобщения за да се знае,че са написани с дадените Биткойн адреси.
@@ -462,7 +462,7 @@
Синхронизиран
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsПокажи %1 помощно съобщение за да получиш лист с възможни Биткойн команди
@@ -536,7 +536,7 @@
Портфейлът е <b>криптиран</b> и <b>заключен</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.Възникна фатална грешка. Биткойн не може да продължи безопасно и ще се изключи.
@@ -795,7 +795,7 @@
Използване на директория ръчно
- Bitcoin
+ NYC3Биткоин
@@ -900,8 +900,8 @@
&Похарчете непотвърденото ресто
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Автоматично отваряне на входящия Bitcoin порт. Работи само с рутери поддържащи UPnP.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Автоматично отваряне на входящия NYC3 порт. Работи само с рутери поддържащи UPnP.Map port using &UPnP
@@ -916,7 +916,7 @@
Позволи входящи връзки
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.Свързване с Биткойн мрежата чрез SOCKS5 прокси.
@@ -1023,7 +1023,7 @@
Формуляр
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.Текущата информация на екрана може да не е актуална. Вашият портфейл ще се синхронизира автоматично с мрежата на Биткоин, щом поне една връзката с нея се установи; този процес все още не е приключил.
diff --git a/src/qt/locale/nyc3_bg_BG.ts b/src/qt/locale/nyc3_bg_BG.ts
index a26ef0ab7..d9aa82bf2 100644
--- a/src/qt/locale/nyc3_bg_BG.ts
+++ b/src/qt/locale/nyc3_bg_BG.ts
@@ -62,11 +62,11 @@
Адрес за получаване
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Тези са вашите Биткойн адреси за изпращане на монети. Винаги проверявайте количеството и получаващия адрес преди изпращане.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Това са вашите Биткойн адреси за получаване на монети. Препоръчително е да ползвате нов адрес на всяка транзакция.
diff --git a/src/qt/locale/nyc3_ca.ts b/src/qt/locale/nyc3_ca.ts
index dd658438f..07753086f 100644
--- a/src/qt/locale/nyc3_ca.ts
+++ b/src/qt/locale/nyc3_ca.ts
@@ -66,12 +66,12 @@
Adreces de recepció
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Aquestes són les vostres adreces de Bitcoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Aquestes són les vostres adreces de NYC3 per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Aquestes són les vostres adreces Bitcoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Aquestes són les vostres adreces NYC3 per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció.&Copy Address
@@ -339,7 +339,7 @@
Send coins to a NYC3 address
- Envia monedes a una adreça Bitcoin
+ Envia monedes a una adreça NYC3Backup wallet to another location
@@ -362,8 +362,8 @@
&Verifica el missatge...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -386,12 +386,12 @@
Encripta les claus privades pertanyents al moneder
- Sign messages with your Bitcoin addresses to prove you own them
- Signa el missatges amb la seva adreça de Bitcoin per provar que les poseeixes
+ Sign messages with your NYC3 addresses to prove you own them
+ Signa el missatges amb la seva adreça de NYC3 per provar que les poseeixes
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Bitcoin específica.
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça NYC3 específica.&File
@@ -466,8 +466,8 @@
Al dia
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Mostra el missatge d'ajuda del %1 per obtenir una llista amb les possibles opcions de línia d'ordres de Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Mostra el missatge d'ajuda del %1 per obtenir una llista amb les possibles opcions de línia d'ordres de NYC3default wallet
@@ -554,8 +554,8 @@
El moneder està <b>encriptat</b> i actualment <b>bloquejat</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- S'ha produït un error fatal. Bitcoin no pot continuar amb seguretat i finalitzarà.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ S'ha produït un error fatal. NYC3 no pot continuar amb seguretat i finalitzarà.
@@ -745,7 +745,7 @@
The entered address "%1" is not a valid NYC3 address.
- L'adreça introduïda «%1» no és una adreça de Bitcoin vàlida.
+ L'adreça introduïda «%1» no és una adreça de NYC3 vàlida.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -841,8 +841,8 @@
Utilitza un directori de dades personalitzat:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -853,8 +853,8 @@
Aproximadament %1 GB de dades s'emmagatzemaran en aquest directori.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 descarregarà i emmagatzemarà una còpia de la cadena de blocs Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 descarregarà i emmagatzemarà una còpia de la cadena de blocs NYC3.The wallet will also be stored in this directory.
@@ -1054,8 +1054,8 @@
&Gasta el canvi sense confirmar
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Obre el port del client de Bitcoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Obre el port del client de NYC3 al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada.Map port using &UPnP
@@ -1070,8 +1070,8 @@
Permet connexions entrants
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Connecta a la xarxa Bitcoin a través d'un proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Connecta a la xarxa NYC3 a través d'un proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1106,8 +1106,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Conectar a la red de Bitcoin a través de un proxy SOCKS5 per als serveis ocults de Tor
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Conectar a la red de NYC3 a través de un proxy SOCKS5 per als serveis ocults de Tor&Window
@@ -1213,8 +1213,8 @@
Formulari
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Bitcoin un cop s'ha establert connexió, però aquest proces no s'ha completat encara.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa NYC3 un cop s'ha establert connexió, però aquest proces no s'ha completat encara.Watch-only:
@@ -1309,7 +1309,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Bitcoin no vàlida o per paràmetres URI amb mal format.
+ L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de NYC3 no vàlida o per paràmetres URI amb mal format.Payment request file handling
@@ -1411,7 +1411,7 @@
Enter a NYC3 address (e.g. %1)
- Introduïu una adreça de Bitcoin (p. ex. %1)
+ Introduïu una adreça de NYC3 (p. ex. %1)%1 d
@@ -1830,8 +1830,8 @@
&Missatge:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa NYC3.An optional label to associate with the new receiving address.
@@ -2232,7 +2232,7 @@ Nota: Com que la comissió es calcula en funció dels bytes, una comissió de "1
Warning: Invalid NYC3 address
- Avís: adreça Bitcoin no vàlida
+ Avís: adreça NYC3 no vàlidaWarning: Unknown change address
@@ -2275,7 +2275,7 @@ Nota: Com que la comissió es calcula en funció dels bytes, una comissió de "1
The NYC3 address to send the payment to
- L'adreça Bitcoin on enviar el pagament
+ L'adreça NYC3 on enviar el pagamentAlt+A
@@ -2318,8 +2318,8 @@ Nota: Com que la comissió es calcula en funció dels bytes, una comissió de "1
Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3.Pay To:
@@ -2368,7 +2368,7 @@ Nota: Com que la comissió es calcula en funció dels bytes, una comissió de "1
The NYC3 address to sign the message with
- L'adreça Bitcoin amb què signar el missatge
+ L'adreça NYC3 amb què signar el missatgeChoose previously used address
@@ -2400,7 +2400,7 @@ Nota: Com que la comissió es calcula en funció dels bytes, una comissió de "1
Sign the message to prove you own this NYC3 address
- Signa el missatge per provar que ets propietari d'aquesta adreça Bitcoin
+ Signa el missatge per provar que ets propietari d'aquesta adreça NYC3Sign &Message
@@ -2424,11 +2424,11 @@ Nota: Com que la comissió es calcula en funció dels bytes, una comissió de "1
The NYC3 address the message was signed with
- L'adreça Bitcoin amb què va ser signat el missatge
+ L'adreça NYC3 amb què va ser signat el missatgeVerify the message to ensure it was signed with the specified NYC3 address
- Verificar el missatge per assegurar-se que ha estat signat amb una adreça Bitcoin específica
+ Verificar el missatge per assegurar-se que ha estat signat amb una adreça NYC3 específicaVerify &Message
diff --git a/src/qt/locale/nyc3_ca@valencia.ts b/src/qt/locale/nyc3_ca@valencia.ts
index ba833b4f5..843221289 100644
--- a/src/qt/locale/nyc3_ca@valencia.ts
+++ b/src/qt/locale/nyc3_ca@valencia.ts
@@ -66,12 +66,12 @@
S'estan rebent les adreces
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estes són les vostres adreces de Bitcoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estes són les vostres adreces de NYC3 per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estes són les vostres adreces Bitcoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estes són les vostres adreces NYC3 per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció.&Copy Address
@@ -291,7 +291,7 @@
Send coins to a NYC3 address
- Envia monedes a una adreça Bitcoin
+ Envia monedes a una adreça NYC3Backup wallet to another location
@@ -314,8 +314,8 @@
&Verifica el missatge...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -338,12 +338,12 @@
Encripta les claus privades pertanyents al moneder
- Sign messages with your Bitcoin addresses to prove you own them
- Signa el missatges amb la seua adreça de Bitcoin per provar que les poseeixes
+ Sign messages with your NYC3 addresses to prove you own them
+ Signa el missatges amb la seua adreça de NYC3 per provar que les poseeixes
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Bitcoin específica.
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça NYC3 específica.&File
@@ -464,8 +464,8 @@
El moneder està <b>encriptat</b> i actualment <b>bloquejat</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Ha tingut lloc un error fatal. Bitcoin no pot continuar executant-se de manera segura i es tancará.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Ha tingut lloc un error fatal. NYC3 no pot continuar executant-se de manera segura i es tancará.
@@ -651,7 +651,7 @@
The entered address "%1" is not a valid NYC3 address.
- L'adreça introduïda «%1» no és una adreça de Bitcoin vàlida.
+ L'adreça introduïda «%1» no és una adreça de NYC3 vàlida.Could not unlock wallet.
@@ -715,8 +715,8 @@
Utilitza un directori de dades personalitzat:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error: Specified data directory "%1" cannot be created.
@@ -832,16 +832,16 @@
&Gasta el canvi sense confirmar
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Obri el port del client de Bitcoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Obri el port del client de NYC3 al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada.Map port using &UPnPPort obert amb &UPnP
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Connecta a la xarxa Bitcoin a través d'un proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Connecta a la xarxa NYC3 a través d'un proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -943,8 +943,8 @@
Formulari
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Bitcoin un cop s'ha establit connexió, però este proces no s'ha completat encara.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa NYC3 un cop s'ha establit connexió, però este proces no s'ha completat encara.Watch-only:
@@ -1035,7 +1035,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Bitcoin no vàlida o per paràmetres URI amb mal format.
+ L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de NYC3 no vàlida o per paràmetres URI amb mal format.Payment request file handling
@@ -1129,7 +1129,7 @@
Enter a NYC3 address (e.g. %1)
- Introduïu una adreça de Bitcoin (p. ex. %1)
+ Introduïu una adreça de NYC3 (p. ex. %1)%1 d
@@ -1396,8 +1396,8 @@
&Missatge:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'òbriga la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'òbriga la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa NYC3.An optional label to associate with the new receiving address.
@@ -1738,7 +1738,7 @@
Warning: Invalid NYC3 address
- Avís: adreça Bitcoin no vàlida
+ Avís: adreça NYC3 no vàlidaWarning: Unknown change address
@@ -1773,7 +1773,7 @@
The NYC3 address to send the payment to
- L'adreça Bitcoin on enviar el pagament
+ L'adreça NYC3 on enviar el pagamentAlt+A
@@ -1816,8 +1816,8 @@
Introduïu una etiqueta per a esta adreça per afegir-la a la llista d'adreces utilitzades
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3.Pay To:
@@ -1862,7 +1862,7 @@
The NYC3 address to sign the message with
- L'adreça Bitcoin amb què signar el missatge
+ L'adreça NYC3 amb què signar el missatgeChoose previously used address
@@ -1894,7 +1894,7 @@
Sign the message to prove you own this NYC3 address
- Signa el missatge per provar que ets propietari d'esta adreça Bitcoin
+ Signa el missatge per provar que ets propietari d'esta adreça NYC3Sign &Message
@@ -1918,11 +1918,11 @@
The NYC3 address the message was signed with
- L'adreça Bitcoin amb què va ser signat el missatge
+ L'adreça NYC3 amb què va ser signat el missatgeVerify the message to ensure it was signed with the specified NYC3 address
- Verificar el missatge per assegurar-se que ha estat signat amb una adreça Bitcoin específica
+ Verificar el missatge per assegurar-se que ha estat signat amb una adreça NYC3 específicaVerify &Message
diff --git a/src/qt/locale/nyc3_ca_ES.ts b/src/qt/locale/nyc3_ca_ES.ts
index 2a3ba06d1..967369112 100644
--- a/src/qt/locale/nyc3_ca_ES.ts
+++ b/src/qt/locale/nyc3_ca_ES.ts
@@ -66,12 +66,12 @@
Adreces de recepció
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Aquestes són les vostres adreces de Bitcoin per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Aquestes són les vostres adreces de NYC3 per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Aquestes són les vostres adreces Bitcoin per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Aquestes són les vostres adreces NYC3 per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció.&Copy Address
@@ -327,7 +327,7 @@
Send coins to a NYC3 address
- Envia monedes a una adreça Bitcoin
+ Envia monedes a una adreça NYC3Backup wallet to another location
@@ -350,8 +350,8 @@
&Verifica el missatge...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -374,12 +374,12 @@
Encripta les claus privades pertanyents al moneder
- Sign messages with your Bitcoin addresses to prove you own them
- Signa el missatges amb la seva adreça de Bitcoin per provar que les poseeixes
+ Sign messages with your NYC3 addresses to prove you own them
+ Signa el missatges amb la seva adreça de NYC3 per provar que les poseeixes
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Bitcoin específica.
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça NYC3 específica.&File
@@ -454,8 +454,8 @@
Al dia
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Mostra el missatge d'ajuda del %1 per obtenir una llista amb les possibles opcions de línia d'ordres de Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Mostra el missatge d'ajuda del %1 per obtenir una llista amb les possibles opcions de línia d'ordres de NYC3&Window
@@ -532,8 +532,8 @@
El moneder està <b>encriptat</b> i actualment <b>bloquejat</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- S'ha produït un error fatal. Bitcoin no pot continuar amb seguretat i finalitzarà.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ S'ha produït un error fatal. NYC3 no pot continuar amb seguretat i finalitzarà.
@@ -723,7 +723,7 @@
The entered address "%1" is not a valid NYC3 address.
- L'adreça introduïda «%1» no és una adreça de Bitcoin vàlida.
+ L'adreça introduïda «%1» no és una adreça de NYC3 vàlida.Could not unlock wallet.
@@ -799,8 +799,8 @@
Utilitza un directori de dades personalitzat:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Approximately %1 GB of data will be stored in this directory.
@@ -952,16 +952,16 @@
&Gasta el canvi sense confirmar
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Obre el port del client de Bitcoin al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Obre el port del client de NYC3 al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada.Map port using &UPnPPort obert amb &UPnP
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Connecta a la xarxa Bitcoin a través d'un proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Connecta a la xarxa NYC3 a través d'un proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -996,8 +996,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Conectar a la red de Bitcoin a través de un proxy SOCKS5 per als serveis ocults de Tor
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Conectar a la red de NYC3 a través de un proxy SOCKS5 per als serveis ocults de Tor&Window
@@ -1095,8 +1095,8 @@
Formulari
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Bitcoin un cop s'ha establert connexió, però aquest proces no s'ha completat encara.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa NYC3 un cop s'ha establert connexió, però aquest proces no s'ha completat encara.Watch-only:
@@ -1187,7 +1187,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Bitcoin no vàlida o per paràmetres URI amb mal format.
+ L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de NYC3 no vàlida o per paràmetres URI amb mal format.Payment request file handling
@@ -1281,7 +1281,7 @@
Enter a NYC3 address (e.g. %1)
- Introduïu una adreça de Bitcoin (p. ex. %1)
+ Introduïu una adreça de NYC3 (p. ex. %1)%1 d
@@ -1616,8 +1616,8 @@
&Missatge:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa NYC3.An optional label to associate with the new receiving address.
@@ -1970,7 +1970,7 @@
Warning: Invalid NYC3 address
- Avís: adreça Bitcoin no vàlida
+ Avís: adreça NYC3 no vàlidaWarning: Unknown change address
@@ -2005,7 +2005,7 @@
The NYC3 address to send the payment to
- L'adreça Bitcoin on enviar el pagament
+ L'adreça NYC3 on enviar el pagamentAlt+A
@@ -2048,8 +2048,8 @@
Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Un missatge que s'ha adjuntat al bitcoin: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa NYC3.Pay To:
@@ -2094,7 +2094,7 @@
The NYC3 address to sign the message with
- L'adreça Bitcoin amb què signar el missatge
+ L'adreça NYC3 amb què signar el missatgeChoose previously used address
@@ -2126,7 +2126,7 @@
Sign the message to prove you own this NYC3 address
- Signa el missatge per provar que ets propietari d'aquesta adreça Bitcoin
+ Signa el missatge per provar que ets propietari d'aquesta adreça NYC3Sign &Message
@@ -2150,11 +2150,11 @@
The NYC3 address the message was signed with
- L'adreça Bitcoin amb què va ser signat el missatge
+ L'adreça NYC3 amb què va ser signat el missatgeVerify the message to ensure it was signed with the specified NYC3 address
- Verificar el missatge per assegurar-se que ha estat signat amb una adreça Bitcoin específica
+ Verificar el missatge per assegurar-se que ha estat signat amb una adreça NYC3 específicaVerify &Message
diff --git a/src/qt/locale/nyc3_cs.ts b/src/qt/locale/nyc3_cs.ts
index 7557636ad..61622a75c 100644
--- a/src/qt/locale/nyc3_cs.ts
+++ b/src/qt/locale/nyc3_cs.ts
@@ -66,11 +66,11 @@
Přijímací adresy
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Tohle jsou tvé bitcoinové adresy pro posílání plateb. Před odesláním mincí si vždy zkontroluj částku a cílovou adresu.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Tohle jsou tvé bitcoinové adresy pro příjem plateb. Nezapomeň si pro každou transakci vždy vygenerovat novou adresu.
@@ -366,8 +366,8 @@
&Ověř zprávu...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,11 +390,11 @@
Zašifruj soukromé klíče ve své peněžence
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themPodepiš zprávy svými bitcoinovými adresami, čímž prokážeš, že jsi jejich vlastníkem
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesOvěř zprávy, aby ses ujistil, že byly podepsány danými bitcoinovými adresami
@@ -434,7 +434,7 @@
Ar&gumenty příkazové řádky
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network%n aktivní spojení do bitcoinové sítě%n aktivní spojení do bitcoinové sítě%n aktivních spojení do bitcoinové sítě%n aktivních spojení do bitcoinové sítě
@@ -502,7 +502,7 @@
Zavřít peněženku
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsSeznam argumentů Bitcoinu pro příkazovou řádku získáš v nápovědě %1
@@ -614,8 +614,8 @@
Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Stala se fatální chyba. Bitcoin nemůže bezpečně pokračovat v činnosti, a proto skončí.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Stala se fatální chyba. NYC3 nemůže bezpečně pokračovat v činnosti, a proto skončí.
@@ -901,8 +901,8 @@
Použij tento adresář pro data:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -913,7 +913,7 @@
Bude proto potřebovat do tohoto adresáře uložit přibližně %1 GB dat.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1 bude stahovat kopii blockchainu.
@@ -1130,7 +1130,7 @@
&Utrácet i ještě nepotvrzené drobné
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Automaticky otevře potřebný port na routeru. Tohle funguje jen za předpokladu, že tvůj router podporuje UPnP a že je UPnP povolené.
@@ -1146,7 +1146,7 @@
Přijí&mat příchozí spojení
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.Připojí se do bitcoinové sítě přes SOCKS5 proxy.
@@ -1182,7 +1182,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.Připojí se do bitcoinové sítě přes SOCKS5 proxy vyhrazenou pro skryté služby v Tor síti.
@@ -1293,7 +1293,7 @@
Formulář
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.Zobrazené informace nemusí být aktuální. Tvá peněženka se automaticky sesynchronizuje s bitcoinovou sítí, jakmile se s ní spojí. Zatím ale ještě není synchronizace dokončena.
@@ -1954,7 +1954,7 @@
&Zpráva:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.Volitelná zpráva, která se připojí k platebnímu požadavku a která se zobrazí, když se požadavek otevře. Poznámka: tahle zpráva se neposílá s platbou po bitcoinové síti.
@@ -2474,7 +2474,7 @@ Poznámka: Jelikož je poplatek počítaný za bajt, poplatek o hodnotě "100 sa
Zadej označení této adresy; obojí se ti pak uloží do adresáře
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.Zpráva, která byla připojena k bitcoin: URI a která se ti pro přehled uloží k transakci. Poznámka: Tahle zpráva se neposílá s platbou po bitcoinové síti.
diff --git a/src/qt/locale/nyc3_cy.ts b/src/qt/locale/nyc3_cy.ts
index a5023c7e1..88b391a10 100644
--- a/src/qt/locale/nyc3_cy.ts
+++ b/src/qt/locale/nyc3_cy.ts
@@ -62,12 +62,12 @@
Derbyn cyfeiriadau
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Rhain ydi eich cyfeiriadau Bitcoin ar gyfer gyrru taliadau. Gwnewch yn sicr o'r swm a'r cyfeiriad derbyn cyn gyrru arian.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Rhain ydi eich cyfeiriadau NYC3 ar gyfer gyrru taliadau. Gwnewch yn sicr o'r swm a'r cyfeiriad derbyn cyn gyrru arian.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Dyma eich cyfeiriadau Bitcoin ar gyfer derbyn taliadau. Argymhellwn ddefnyddio cyfeiriad derbyn newydd ar gyfer bob trafodyn.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Dyma eich cyfeiriadau NYC3 ar gyfer derbyn taliadau. Argymhellwn ddefnyddio cyfeiriad derbyn newydd ar gyfer bob trafodyn.&Copy Address
@@ -319,7 +319,7 @@
Send coins to a NYC3 address
- Anfon arian i gyfeiriad Bitcoin
+ Anfon arian i gyfeiriad NYC3Backup wallet to another location
@@ -338,8 +338,8 @@
&Gwirio neges...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -362,12 +362,12 @@
Amgryptio'r allweddi preifat sy'n perthyn i'ch waled
- Sign messages with your Bitcoin addresses to prove you own them
- Arwyddo negeseuon gyda eich cyfeiriadau Bitcoin i brofi mae chi sy'n berchen arnynt
+ Sign messages with your NYC3 addresses to prove you own them
+ Arwyddo negeseuon gyda eich cyfeiriadau NYC3 i brofi mae chi sy'n berchen arnynt
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Gwirio negeseuon i sicrhau eu bod wedi eu harwyddo gyda cyfeiriadau Bitcoin penodol
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Gwirio negeseuon i sicrhau eu bod wedi eu harwyddo gyda cyfeiriadau NYC3 penodol&File
@@ -399,7 +399,7 @@
Open a bitcoin: URI or payment request
- Agor Bitcoin: URI neu ofyn taliad
+ Agor NYC3: URI neu ofyn taliad&Command-line options
@@ -508,8 +508,8 @@
Mae'r waled <b>wedi'i amgryptio</b> ac <b>ar glo</b> ar hyn o bryd
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Mae gwall angheuol wedi digwydd. Ni all Bitcoin barhau'n ddiogel ac mae'n cau lawr.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Mae gwall angheuol wedi digwydd. Ni all NYC3 barhau'n ddiogel ac mae'n cau lawr.
@@ -615,8 +615,8 @@
Croeso
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -1026,7 +1026,7 @@
bitcoin-coreNYC3
- Craidd Bitcoin
+ Craidd NYC3Information
diff --git a/src/qt/locale/nyc3_da.ts b/src/qt/locale/nyc3_da.ts
index 2e90b0c59..1c71d6abb 100644
--- a/src/qt/locale/nyc3_da.ts
+++ b/src/qt/locale/nyc3_da.ts
@@ -66,12 +66,12 @@
Modtagelsesadresser
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Disse er dine Bitcoin-adresser til afsendelse af betalinger. Tjek altid beløb og modtagelsesadresse, inden du sender bitcoins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Disse er dine NYC3-adresser til afsendelse af betalinger. Tjek altid beløb og modtagelsesadresse, inden du sender bitcoins.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Dette er dine Bitcoin-adresser til modtagelse af betalinger. Det anbefales at bruge en ny modtagelsesadresse for hver transaktion.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Dette er dine NYC3-adresser til modtagelse af betalinger. Det anbefales at bruge en ny modtagelsesadresse for hver transaktion.&Copy Address
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Send bitcoins til en Bitcoin-adresse
+ Send bitcoins til en NYC3-adresseBackup wallet to another location
@@ -366,8 +366,8 @@
&Verificér besked…
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Kryptér de private nøgler, der hører til din tegnebog
- Sign messages with your Bitcoin addresses to prove you own them
- Signér beskeder med dine Bitcoin-adresser for at bevise, at de tilhører dig
+ Sign messages with your NYC3 addresses to prove you own them
+ Signér beskeder med dine NYC3-adresser for at bevise, at de tilhører dig
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificér beskeder for at sikre, at de er signeret med de angivne Bitcoin-adresser
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificér beskeder for at sikre, at de er signeret med de angivne NYC3-adresser&File
@@ -434,8 +434,8 @@
Tilvalg for &kommandolinje
- %n active connection(s) to Bitcoin network
- %n aktiv forbindelse til Bitcoin-netværket%n aktive forbindelser til Bitcoin-netværket
+ %n active connection(s) to NYC3 network
+ %n aktiv forbindelse til NYC3-netværket%n aktive forbindelser til NYC3-netværketIndexing blocks on disk...
@@ -486,8 +486,8 @@
&Modtageradresser
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Vis %1 hjælpebesked for at få en liste over mulige tilvalg for Bitcoin kommandolinje
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Vis %1 hjælpebesked for at få en liste over mulige tilvalg for NYC3 kommandolinjedefault wallet
@@ -590,8 +590,8 @@
Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Der opstod en fatal fejl. Bitcoin kan ikke længere fortsætte sikkert og vil afslutte.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Der opstod en fatal fejl. NYC3 kan ikke længere fortsætte sikkert og vil afslutte.
@@ -781,7 +781,7 @@
The entered address "%1" is not a valid NYC3 address.
- Den indtastede adresse “%1” er ikke en gyldig Bitcoin-adresse.
+ Den indtastede adresse “%1” er ikke en gyldig NYC3-adresse.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -877,8 +877,8 @@
Brug tilpasset mappe for data:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -889,8 +889,8 @@
Omtrent %1 GB data vil blive gemt i denne mappe.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 vil downloade og gemme en kopi af Bitcoin-blokkæden.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 vil downloade og gemme en kopi af NYC3-blokkæden.The wallet will also be stored in this directory.
@@ -1102,8 +1102,8 @@
&Brug ubekræftede byttepenge
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Åbn automatisk Bitcoin-klientens port på routeren. Dette virker kun, når din router understøtter UPnP, og UPnP er aktiveret.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Åbn automatisk NYC3-klientens port på routeren. Dette virker kun, når din router understøtter UPnP, og UPnP er aktiveret.Map port using &UPnP
@@ -1118,8 +1118,8 @@
Tillad &indkommende forbindelser
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Forbind til Bitcoin-netværket gennem en SOCKS5-proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Forbind til NYC3-netværket gennem en SOCKS5-proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -1154,8 +1154,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Forbind til Bitcoin-netværket gennem en separat SOCKS5-proxy for Tors skjulte tjenester.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Forbind til NYC3-netværket gennem en separat SOCKS5-proxy for Tors skjulte tjenester.&Window
@@ -1265,8 +1265,8 @@
Formular
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Den viste information kan være forældet. Din tegnebog synkroniserer automatisk med Bitcoin-netværket, når en forbindelse etableres, men denne proces er ikke gennemført endnu.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Den viste information kan være forældet. Din tegnebog synkroniserer automatisk med NYC3-netværket, når en forbindelse etableres, men denne proces er ikke gennemført endnu.Watch-only:
@@ -1369,7 +1369,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI kan ikke tolkes! Dette kan skyldes en ugyldig Bitcoin-adresse eller forkert udformede URL-parametre.
+ URI kan ikke tolkes! Dette kan skyldes en ugyldig NYC3-adresse eller forkert udformede URL-parametre.Payment request file handling
@@ -1471,7 +1471,7 @@
Enter a NYC3 address (e.g. %1)
- Indtast en Bitcoin-adresse (fx %1)
+ Indtast en NYC3-adresse (fx %1)%1 d
@@ -1926,8 +1926,8 @@
&Besked:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- En valgfri besked, der føjes til betalingsanmodningen, og som vil vises, når anmodningen åbnes. Bemærk: Beskeden vil ikke sendes sammen med betalingen over Bitcoin-netværket.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ En valgfri besked, der føjes til betalingsanmodningen, og som vil vises, når anmodningen åbnes. Bemærk: Beskeden vil ikke sendes sammen med betalingen over NYC3-netværket.An optional label to associate with the new receiving address.
@@ -2356,7 +2356,7 @@ Note: Siden gebyret er kalkuleret på en per-byte basis, et gebyr på "100 satos
Warning: Invalid NYC3 address
- Advarsel: Ugyldig Bitcoin-adresse
+ Advarsel: Ugyldig NYC3-adresseWarning: Unknown change address
@@ -2399,7 +2399,7 @@ Note: Siden gebyret er kalkuleret på en per-byte basis, et gebyr på "100 satos
The NYC3 address to send the payment to
- Bitcoin-adresse, som betalingen skal sendes til
+ NYC3-adresse, som betalingen skal sendes tilAlt+A
@@ -2446,8 +2446,8 @@ Note: Siden gebyret er kalkuleret på en per-byte basis, et gebyr på "100 satos
Indtast et mærkat for denne adresse for at føje den til listen over brugte adresser
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- En besked, som blev føjet til “bitcon:”-URI'en, som vil gemmes med transaktionen til din reference. Bemærk: Denne besked vil ikke blive sendt over Bitcoin-netværket.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ En besked, som blev føjet til “bitcon:”-URI'en, som vil gemmes med transaktionen til din reference. Bemærk: Denne besked vil ikke blive sendt over NYC3-netværket.Pay To:
@@ -2496,7 +2496,7 @@ Note: Siden gebyret er kalkuleret på en per-byte basis, et gebyr på "100 satos
The NYC3 address to sign the message with
- Bitcoin-adresse, som beskeden skal signeres med
+ NYC3-adresse, som beskeden skal signeres medChoose previously used address
@@ -2528,7 +2528,7 @@ Note: Siden gebyret er kalkuleret på en per-byte basis, et gebyr på "100 satos
Sign the message to prove you own this NYC3 address
- Signér denne besked for at bevise, at Bitcoin-adressen tilhører dig
+ Signér denne besked for at bevise, at NYC3-adressen tilhører digSign &Message
@@ -2552,11 +2552,11 @@ Note: Siden gebyret er kalkuleret på en per-byte basis, et gebyr på "100 satos
The NYC3 address the message was signed with
- Bitcoin-adressen, som beskeden blev signeret med
+ NYC3-adressen, som beskeden blev signeret medVerify the message to ensure it was signed with the specified NYC3 address
- Verificér beskeden for at sikre, at den er signeret med den angivne Bitcoin-adresse
+ Verificér beskeden for at sikre, at den er signeret med den angivne NYC3-adresseVerify &Message
diff --git a/src/qt/locale/nyc3_de.ts b/src/qt/locale/nyc3_de.ts
index 527d320bd..54251d239 100644
--- a/src/qt/locale/nyc3_de.ts
+++ b/src/qt/locale/nyc3_de.ts
@@ -66,12 +66,12 @@
Empfängeradressen
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Dies sind Ihre Bitcoin-Adressen zum Tätigen von Überweisungen. Bitte prüfen Sie den Betrag und die Adresse des Empfängers, bevor Sie Bitcoins überweisen.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Dies sind Ihre NYC3-Adressen zum Tätigen von Überweisungen. Bitte prüfen Sie den Betrag und die Adresse des Empfängers, bevor Sie Bitcoins überweisen.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Dies sind Ihre Bitcoin-Adressen zum Empfangen von Zahlungen. Es wird empfohlen, für jede Transaktion eine neue Empfangsadresse zu verwenden.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Dies sind Ihre NYC3-Adressen zum Empfangen von Zahlungen. Es wird empfohlen, für jede Transaktion eine neue Empfangsadresse zu verwenden.&Copy Address
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Bitcoins an eine Bitcoin-Adresse überweisen
+ Bitcoins an eine NYC3-Adresse überweisenBackup wallet to another location
@@ -366,8 +366,8 @@
Nachricht &verifizieren...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Verschlüsselt die zu Ihrer Wallet gehörenden privaten Schlüssel
- Sign messages with your Bitcoin addresses to prove you own them
- Nachrichten signieren, um den Besitz Ihrer Bitcoin-Adressen zu beweisen
+ Sign messages with your NYC3 addresses to prove you own them
+ Nachrichten signieren, um den Besitz Ihrer NYC3-Adressen zu beweisen
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Nachrichten verifizieren, um sicherzustellen, dass diese mit den angegebenen Bitcoin-Adressen signiert wurden
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Nachrichten verifizieren, um sicherzustellen, dass diese mit den angegebenen NYC3-Adressen signiert wurden&File
@@ -434,8 +434,8 @@
&Kommandozeilenoptionen
- %n active connection(s) to Bitcoin network
- %n aktive Verbindung zum Bitcoin-Netzwerk%n aktive Verbindungen zum Bitcoin-Netzwerk
+ %n active connection(s) to NYC3 network
+ %n aktive Verbindung zum NYC3-Netzwerk%n aktive Verbindungen zum NYC3-NetzwerkIndexing blocks on disk...
@@ -502,7 +502,7 @@
Wallet schließen
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsZeige den "%1"-Hilfetext, um eine Liste mit möglichen Kommandozeilenoptionen zu erhalten
@@ -614,8 +614,8 @@
Wallet ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Ein schwerer Fehler ist aufgetreten. Bitcoin kann nicht stabil weiter ausgeführt werden und wird beendet.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Ein schwerer Fehler ist aufgetreten. NYC3 kann nicht stabil weiter ausgeführt werden und wird beendet.
@@ -805,7 +805,7 @@
The entered address "%1" is not a valid NYC3 address.
- Die eingegebene Adresse "%1" ist keine gültige Bitcoin-Adresse.
+ Die eingegebene Adresse "%1" ist keine gültige NYC3-Adresse.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -901,8 +901,8 @@
Ein benutzerdefiniertes Datenverzeichnis verwenden:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -913,8 +913,8 @@
Etwa %1 GB Daten werden in diesem Verzeichnis gespeichert.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 wird heruntergeladen und als eine Kopie von dem Bitcoin Blockchain gespeichert.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 wird heruntergeladen und als eine Kopie von dem NYC3 Blockchain gespeichert.The wallet will also be stored in this directory.
@@ -945,7 +945,7 @@
Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below.
- Neueste Transaktionen werden eventuell noch nicht angezeigt, daher könnte Ihr Kontostand veraltet sein. Er wird korrigiert, sobald Ihr Wallet die Synchronisation mit dem Bitcoin-Netzwerk erfolgreich abgeschlossen hat. Details dazu finden sich weiter unten.
+ Neueste Transaktionen werden eventuell noch nicht angezeigt, daher könnte Ihr Kontostand veraltet sein. Er wird korrigiert, sobald Ihr Wallet die Synchronisation mit dem NYC3-Netzwerk erfolgreich abgeschlossen hat. Details dazu finden sich weiter unten.Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network.
@@ -1126,8 +1126,8 @@
&Unbestätigtes Wechselgeld darf ausgegeben werden
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Automatisch den Bitcoin-Clientport auf dem Router öffnen. Dies funktioniert nur, wenn Ihr Router UPnP unterstützt und dies aktiviert ist.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatisch den NYC3-Clientport auf dem Router öffnen. Dies funktioniert nur, wenn Ihr Router UPnP unterstützt und dies aktiviert ist.Map port using &UPnP
@@ -1142,8 +1142,8 @@
Erlaube eingehende Verbindungen
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Über einen SOCKS5-Proxy mit dem Bitcoin-Netzwerk verbinden.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Über einen SOCKS5-Proxy mit dem NYC3-Netzwerk verbinden.&Connect through SOCKS5 proxy (default proxy):
@@ -1178,8 +1178,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Über einen separaten SOCKS5 Proxy für Tor Services mit dem Bitcoin Netzwerk verbinden.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Über einen separaten SOCKS5 Proxy für Tor Services mit dem NYC3 Netzwerk verbinden.&Window
@@ -1289,8 +1289,8 @@
Formular
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Die angezeigten Informationen sind möglicherweise nicht mehr aktuell. Ihre Wallet wird automatisch synchronisiert, nachdem eine Verbindung zum Bitcoin-Netzwerk hergestellt wurde. Dieser Prozess ist jedoch derzeit noch nicht abgeschlossen.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Die angezeigten Informationen sind möglicherweise nicht mehr aktuell. Ihre Wallet wird automatisch synchronisiert, nachdem eine Verbindung zum NYC3-Netzwerk hergestellt wurde. Dieser Prozess ist jedoch derzeit noch nicht abgeschlossen.Watch-only:
@@ -1365,7 +1365,7 @@
Cannot start bitcoin: click-to-pay handler
- Kann Bitcoin nicht starten: Klicken-zum-Bezahlen-Handler
+ Kann NYC3 nicht starten: Klicken-zum-Bezahlen-HandlerURI handling
@@ -1393,7 +1393,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI kann nicht analysiert werden! Dies kann durch eine ungültige Bitcoin-Adresse oder fehlerhafte URI-Parameter verursacht werden.
+ URI kann nicht analysiert werden! Dies kann durch eine ungültige NYC3-Adresse oder fehlerhafte URI-Parameter verursacht werden.Payment request file handling
@@ -1495,7 +1495,7 @@
Enter a NYC3 address (e.g. %1)
- Bitcoin-Adresse eingeben (z.B. %1)
+ NYC3-Adresse eingeben (z.B. %1)%1 d
@@ -1950,8 +1950,8 @@
&Nachricht:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Eine optionale Nachricht, die an die Zahlungsanforderung angehängt wird. Sie wird angezeigt, wenn die Anforderung geöffnet wird. Hinweis: Diese Nachricht wird nicht mit der Zahlung über das Bitcoin-Netzwerk gesendet.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Eine optionale Nachricht, die an die Zahlungsanforderung angehängt wird. Sie wird angezeigt, wenn die Anforderung geöffnet wird. Hinweis: Diese Nachricht wird nicht mit der Zahlung über das NYC3-Netzwerk gesendet.An optional label to associate with the new receiving address.
@@ -2232,7 +2232,7 @@ Hinweis: Eine Gebühr von "100 Satoshis pro kB" bei einer Größe der Transaktio
When there is less transaction volume than space in the blocks, miners as well as relaying nodes may enforce a minimum fee. Paying only this minimum fee is just fine, but be aware that this can result in a never confirming transaction once there is more demand for bitcoin transactions than the network can process.
- Nur die minimale Gebühr zu bezahlen ist so lange in Ordnung, wie weniger Transaktionsvolumen als Platz in den Blöcken vorhanden ist. Aber Vorsicht, diese Option kann dazu führen, dass Transaktionen nicht bestätigt werden, wenn mehr Bedarf an Bitcoin-Transaktionen besteht als das Netzwerk verarbeiten kann.
+ Nur die minimale Gebühr zu bezahlen ist so lange in Ordnung, wie weniger Transaktionsvolumen als Platz in den Blöcken vorhanden ist. Aber Vorsicht, diese Option kann dazu führen, dass Transaktionen nicht bestätigt werden, wenn mehr Bedarf an NYC3-Transaktionen besteht als das Netzwerk verarbeiten kann.A too low fee might result in a never confirming transaction (read the tooltip)
@@ -2380,7 +2380,7 @@ Hinweis: Eine Gebühr von "100 Satoshis pro kB" bei einer Größe der Transaktio
Warning: Invalid NYC3 address
- Warnung: Ungültige Bitcoin-Adresse
+ Warnung: Ungültige NYC3-AdresseWarning: Unknown change address
@@ -2470,8 +2470,8 @@ Hinweis: Eine Gebühr von "100 Satoshis pro kB" bei einer Größe der Transaktio
Adressbezeichnung eingeben, die dann zusammen mit der Adresse der Liste bereits verwendeter Adressen hinzugefügt wird.
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Eine an die "bitcoin:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Bitcoin-Netzwerk gesendet.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Eine an die "bitcoin:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das NYC3-Netzwerk gesendet.Pay To:
@@ -2520,7 +2520,7 @@ Hinweis: Eine Gebühr von "100 Satoshis pro kB" bei einer Größe der Transaktio
The NYC3 address to sign the message with
- Die Bitcoin-Adresse mit der die Nachricht signiert wird
+ Die NYC3-Adresse mit der die Nachricht signiert wirdChoose previously used address
@@ -2552,7 +2552,7 @@ Hinweis: Eine Gebühr von "100 Satoshis pro kB" bei einer Größe der Transaktio
Sign the message to prove you own this NYC3 address
- Die Nachricht signieren, um den Besitz dieser Bitcoin-Adresse zu beweisen
+ Die Nachricht signieren, um den Besitz dieser NYC3-Adresse zu beweisenSign &Message
@@ -2576,11 +2576,11 @@ Hinweis: Eine Gebühr von "100 Satoshis pro kB" bei einer Größe der Transaktio
The NYC3 address the message was signed with
- Die Bitcoin-Adresse mit der die Nachricht signiert wurde
+ Die NYC3-Adresse mit der die Nachricht signiert wurdeVerify the message to ensure it was signed with the specified NYC3 address
- Die Nachricht verifizieren, um sicherzustellen, dass diese mit der angegebenen Bitcoin-Adresse signiert wurde
+ Die Nachricht verifizieren, um sicherzustellen, dass diese mit der angegebenen NYC3-Adresse signiert wurdeVerify &Message
diff --git a/src/qt/locale/nyc3_el_GR.ts b/src/qt/locale/nyc3_el_GR.ts
index 4e18dd15e..479154a2e 100644
--- a/src/qt/locale/nyc3_el_GR.ts
+++ b/src/qt/locale/nyc3_el_GR.ts
@@ -66,12 +66,12 @@
Διευθύνσεις λήψης
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Αυτές είναι οι Bitcoin διευθύνσεις σας για να στέλνετε πληρωμές. Να ελέγχετε πάντα το ποσό, καθώς και τη διεύθυνση παραλήπτη πριν στείλετε νομίσματα.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Αυτές είναι οι NYC3 διευθύνσεις σας για να στέλνετε πληρωμές. Να ελέγχετε πάντα το ποσό, καθώς και τη διεύθυνση παραλήπτη πριν στείλετε νομίσματα.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Αυτές είναι οι Bitcoin διευθύνσεις σας για να λαμβάνετε πληρωμές. Προτείνετε να χρησιμοποιείτε μια νέα διεύθυνση παραλήπτη για κάθε συναλλαγή.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Αυτές είναι οι NYC3 διευθύνσεις σας για να λαμβάνετε πληρωμές. Προτείνετε να χρησιμοποιείτε μια νέα διεύθυνση παραλήπτη για κάθε συναλλαγή.&Copy Address
@@ -358,8 +358,8 @@
&Επιβεβαίωση μηνύματος
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -382,12 +382,12 @@
Κρυπτογραφήστε τα ιδιωτικά κλειδιά που ανήκουν στο πορτοφόλι σας
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themΥπογράψτε ένα μήνυμα για να βεβαιώσετε πως είστε ο κάτοχος αυτής της διεύθυνσης
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως ανήκει μια συγκεκριμένη διεύθυνση Bitcoin
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως ανήκει μια συγκεκριμένη διεύθυνση NYC3&File
@@ -677,7 +677,7 @@
The entered address "%1" is not a valid NYC3 address.
- Η διεύθυνση "%1" δεν είναι έγκυρη Bitcoin διεύθυνση.
+ Η διεύθυνση "%1" δεν είναι έγκυρη NYC3 διεύθυνση.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -753,8 +753,8 @@
Προσαρμογή του φακέλου δεδομένων:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error: Specified data directory "%1" cannot be created.
@@ -886,16 +886,16 @@
&Ξόδεμα μη επικυρωμένων ρέστων
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Αυτόματο άνοιγμα των θυρών Bitcoin στον δρομολογητή. Λειτουργεί μόνο αν ο δρομολογητής σας υποστηρίζει τη λειτουργία UPnP.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Αυτόματο άνοιγμα των θυρών NYC3 στον δρομολογητή. Λειτουργεί μόνο αν ο δρομολογητής σας υποστηρίζει τη λειτουργία UPnP.Map port using &UPnPΑπόδοση θυρών με χρήστη &UPnP
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Σύνδεση στο δίκτυο Bitcoin μέσω διαμεσολαβητή SOCKS5 (π.χ. για σύνδεση μέσω Tor)
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Σύνδεση στο δίκτυο NYC3 μέσω διαμεσολαβητή SOCKS5 (π.χ. για σύνδεση μέσω Tor)&Connect through SOCKS5 proxy (default proxy):
@@ -1005,8 +1005,8 @@
Φόρμα
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Οι πληροφορίες που εμφανίζονται μπορεί να είναι ξεπερασμένες. Το πορτοφόλι σας συγχρονίζεται αυτόματα με το δίκτυο Bitcoin μετά από μια σύνδεση, αλλά αυτή η διαδικασία δεν έχει ακόμη ολοκληρωθεί.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Οι πληροφορίες που εμφανίζονται μπορεί να είναι ξεπερασμένες. Το πορτοφόλι σας συγχρονίζεται αυτόματα με το δίκτυο NYC3 μετά από μια σύνδεση, αλλά αυτή η διαδικασία δεν έχει ακόμη ολοκληρωθεί. Watch-only:
@@ -1115,7 +1115,7 @@
Enter a NYC3 address (e.g. %1)
- Εισάγετε μια διεύθυνση Bitcoin (π.χ. %1)
+ Εισάγετε μια διεύθυνση NYC3 (π.χ. %1)%1 d
@@ -1639,7 +1639,7 @@
The NYC3 address to send the payment to
- Η διεύθυνση Bitcoin που θα σταλεί η πληρωμή
+ Η διεύθυνση NYC3 που θα σταλεί η πληρωμήAlt+A
@@ -1700,7 +1700,7 @@
The NYC3 address to sign the message with
- Διεύθυνση Bitcoin που θα σταλεί το μήνυμα
+ Διεύθυνση NYC3 που θα σταλεί το μήνυμαChoose previously used address
@@ -1732,7 +1732,7 @@
Sign the message to prove you own this NYC3 address
- Υπογράψτε το μήνυμα για να αποδείξετε πως σας ανήκει η συγκεκριμένη διεύθυνση Bitcoin
+ Υπογράψτε το μήνυμα για να αποδείξετε πως σας ανήκει η συγκεκριμένη διεύθυνση NYC3Sign &Message
@@ -1752,11 +1752,11 @@
The NYC3 address the message was signed with
- Διεύθυνση Bitcoin με την οποία έχει υπογραφεί το μήνυμα
+ Διεύθυνση NYC3 με την οποία έχει υπογραφεί το μήνυμαVerify the message to ensure it was signed with the specified NYC3 address
- Επαληθεύστε το μήνυμα για να αποδείξετε πως υπογράφθηκε από τη συγκεκριμένη διεύθυνση Bitcoin
+ Επαληθεύστε το μήνυμα για να αποδείξετε πως υπογράφθηκε από τη συγκεκριμένη διεύθυνση NYC3Verify &Message
diff --git a/src/qt/locale/nyc3_en.ts b/src/qt/locale/nyc3_en.ts
index 5bf398612..2d5295920 100644
--- a/src/qt/locale/nyc3_en.ts
+++ b/src/qt/locale/nyc3_en.ts
@@ -85,12 +85,12 @@
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
@@ -466,8 +466,8 @@
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3
@@ -496,13 +496,13 @@
- Sign messages with your Bitcoin addresses to prove you own them
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own them
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verify messages to ensure they were signed with specified NYC3 addresses
@@ -551,10 +551,10 @@
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network
- %n active connection to Bitcoin network
- %n active connections to Bitcoin network
+ %n active connection to NYC3 network
+ %n active connections to NYC3 network
@@ -642,7 +642,7 @@
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line options
@@ -773,7 +773,7 @@
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
@@ -1131,8 +1131,8 @@
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3
@@ -1146,7 +1146,7 @@
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.
@@ -1428,8 +1428,8 @@
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
@@ -1448,7 +1448,7 @@
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
@@ -1496,7 +1496,7 @@
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
@@ -1636,8 +1636,8 @@
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
@@ -2535,7 +2535,7 @@
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
@@ -3192,7 +3192,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satos
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
diff --git a/src/qt/locale/nyc3_en_GB.ts b/src/qt/locale/nyc3_en_GB.ts
index b0dfbbfdd..badc2f563 100644
--- a/src/qt/locale/nyc3_en_GB.ts
+++ b/src/qt/locale/nyc3_en_GB.ts
@@ -66,12 +66,12 @@
Receiving addresses
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.&Copy Address
@@ -366,8 +366,8 @@
&Verify message...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Encrypt the private keys that belong to your wallet
- Sign messages with your Bitcoin addresses to prove you own them
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own them
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verify messages to ensure they were signed with specified NYC3 addresses&File
@@ -434,8 +434,8 @@
&Command-line options
- %n active connection(s) to Bitcoin network
- %n active connection to Bitcoin network%n active connections to Bitcoin network
+ %n active connection(s) to NYC3 network
+ %n active connection to NYC3 network%n active connections to NYC3 networkIndexing blocks on disk...
@@ -486,8 +486,8 @@
&Receiving addresses
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsdefault wallet
@@ -590,8 +590,8 @@
Wallet is <b>encrypted</b> and currently <b>locked</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
@@ -877,8 +877,8 @@
Use a custom data directory:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -889,8 +889,8 @@
Approximately %1 GB of data will be stored in this directory.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 will download and store a copy of the NYC3 block chain.The wallet will also be stored in this directory.
@@ -921,7 +921,7 @@
Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below.
- Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronising with the Bitcoin network, as detailed below.
+ Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronising with the NYC3 network, as detailed below.Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network.
@@ -1102,8 +1102,8 @@
&Spend unconfirmed change
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Map port using &UPnP
@@ -1118,8 +1118,8 @@
Allow incomin&g connections
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -1154,8 +1154,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.&Window
@@ -1265,8 +1265,8 @@
Form
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- The displayed information may be out of date. Your Wallet automatically synchronises with the Bitcoin Network after a connection is established, but this process has not been completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your Wallet automatically synchronises with the NYC3 Network after a connection is established, but this process has not been completed yet.Watch-only:
@@ -1341,7 +1341,7 @@
Cannot start bitcoin: click-to-pay handler
- Cannot start Bitcoin: click-to-pay handler
+ Cannot start NYC3: click-to-pay handlerURI handling
@@ -1926,8 +1926,8 @@
&Message:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.An optional label to associate with the new receiving address.
@@ -2446,8 +2446,8 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Enter a label for this address to add it to the list of used addresses
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.Pay To:
diff --git a/src/qt/locale/nyc3_eo.ts b/src/qt/locale/nyc3_eo.ts
index 8465b7b2f..f2ecba986 100644
--- a/src/qt/locale/nyc3_eo.ts
+++ b/src/qt/locale/nyc3_eo.ts
@@ -66,11 +66,11 @@
Ricevaj adresoj
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Jen viaj Bitmon-adresoj por sendi pagojn. Zorge kontrolu la sumon kaj la alsendan adreson antaŭ ol sendi.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Jen viaj bitmonaj adresoj por ricevi pagojn. Estas konsilinde uzi apartan ricevan adreson por ĉiu transakcio.
@@ -322,7 +322,7 @@
&Kontroli mesaĝon...
- Bitcoin
+ NYC3Bitmono
@@ -346,11 +346,11 @@
Ĉifri la privatajn ŝlosilojn de via monujo
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themSubskribi mesaĝojn per via Bitmon-adresoj por pravigi, ke vi estas la posedanto
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesKontroli mesaĝojn por kontroli ĉu ili estas subskribitaj per specifaj Bitmon-adresoj
@@ -615,7 +615,7 @@
Uzi alian dosierujon por datumoj:
- Bitcoin
+ NYC3Bitmono
@@ -692,7 +692,7 @@
Fakulo
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Aŭtomate malfermi la kursilan pordon por Bitmono. Tio funkcias nur se via kursilo havas la UPnP-funkcion, kaj se tiu ĉi estas ŝaltita.
@@ -791,7 +791,7 @@
Formularo
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.Eblas, ke la informoj videblaj ĉi tie estas eksdataj. Via monujo aŭtomate sinkoniĝas kun la bitmona reto kiam ili konektiĝas, sed tiu procezo ankoraŭ ne finfariĝis.
diff --git a/src/qt/locale/nyc3_es.ts b/src/qt/locale/nyc3_es.ts
index 2f5544ea9..3900894f5 100644
--- a/src/qt/locale/nyc3_es.ts
+++ b/src/qt/locale/nyc3_es.ts
@@ -66,12 +66,12 @@
Direcciones de recepción
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estas son sus direcciones Bitcoin para enviar pagos. Verifique siempre la cantidad y la dirección de recepción antes de enviar bitcoins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estas son sus direcciones NYC3 para enviar pagos. Verifique siempre la cantidad y la dirección de recepción antes de enviar bitcoins.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estas son sus direcciones Bitcoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estas son sus direcciones NYC3 para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción&Copy Address
@@ -339,7 +339,7 @@
Send coins to a NYC3 address
- Enviar bitcoins a una dirección Bitcoin
+ Enviar bitcoins a una dirección NYC3Backup wallet to another location
@@ -362,8 +362,8 @@
&Verificar mensaje...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -386,12 +386,12 @@
Cifrar las claves privadas de su monedero
- Sign messages with your Bitcoin addresses to prove you own them
- Firmar mensajes con sus direcciones Bitcoin para demostrar la propiedad
+ Sign messages with your NYC3 addresses to prove you own them
+ Firmar mensajes con sus direcciones NYC3 para demostrar la propiedad
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificar mensajes comprobando que están firmados con direcciones Bitcoin concretas
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificar mensajes comprobando que están firmados con direcciones NYC3 concretas&File
@@ -430,8 +430,8 @@
&Opciones de consola de comandos
- %n active connection(s) to Bitcoin network
- %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin
+ %n active connection(s) to NYC3 network
+ %n conexión activa hacia la red NYC3%n conexiones activas hacia la red NYC3Indexing blocks on disk...
@@ -498,8 +498,8 @@
Cerrar monedero
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de linea de comandos de Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de linea de comandos de NYC3default wallet
@@ -605,8 +605,8 @@
El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Ha ocurrido un error fatal. Bitcoin no puede seguir seguro y se cerrará.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Ha ocurrido un error fatal. NYC3 no puede seguir seguro y se cerrará.
@@ -796,7 +796,7 @@
The entered address "%1" is not a valid NYC3 address.
- La dirección introducida "%1" no es una dirección Bitcoin válida.
+ La dirección introducida "%1" no es una dirección NYC3 válida.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -892,8 +892,8 @@
Utilizar un directorio de datos personalizado:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -904,8 +904,8 @@
Se almacenará aproximadamente %1 GB de datos en este directorio.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 descargará y almacenará una copia de la cadena de bloques de Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 descargará y almacenará una copia de la cadena de bloques de NYC3.The wallet will also be stored in this directory.
@@ -1113,8 +1113,8 @@
&Gastar cambio no confirmado
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Abrir automáticamente el puerto del cliente Bitcoin en el router. Esta opción solo funciona si el router admite UPnP y está activado.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Abrir automáticamente el puerto del cliente NYC3 en el router. Esta opción solo funciona si el router admite UPnP y está activado.Map port using &UPnP
@@ -1129,8 +1129,8 @@
Permitir conexiones entrantes
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Conectarse a la red Bitcoin a través de un proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Conectarse a la red NYC3 a través de un proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1165,8 +1165,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Conectar a la red Bitcoin mediante un proxy SOCKS5 por separado para los servicios ocultos de Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Conectar a la red NYC3 mediante un proxy SOCKS5 por separado para los servicios ocultos de Tor.&Window
@@ -1272,8 +1272,8 @@
Formulario
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Bitcoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red NYC3 después de que se haya establecido una conexión, pero este proceso aún no se ha completado.Watch-only:
@@ -1376,7 +1376,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI no puede ser analizado! Esto puede ser causado por una dirección Bitcoin inválida o parametros URI mal formados.
+ URI no puede ser analizado! Esto puede ser causado por una dirección NYC3 inválida o parametros URI mal formados.Payment request file handling
@@ -1478,7 +1478,7 @@
Enter a NYC3 address (e.g. %1)
- Introducir una dirección Bitcoin (p. ej. %1)
+ Introducir una dirección NYC3 (p. ej. %1)%1 d
@@ -1921,8 +1921,8 @@
Mensaje:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red NYC3.An optional label to associate with the new receiving address.
@@ -2343,7 +2343,7 @@ Nota: Dado que la comisión se calcula por byte, una comisión de "100 satoshis
Warning: Invalid NYC3 address
- Alerta: dirección Bitcoin inválida
+ Alerta: dirección NYC3 inválidaWarning: Unknown change address
@@ -2386,7 +2386,7 @@ Nota: Dado que la comisión se calcula por byte, una comisión de "100 satoshis
The NYC3 address to send the payment to
- Dirección Bitcoin a la que enviar el pago
+ Dirección NYC3 a la que enviar el pagoAlt+A
@@ -2433,8 +2433,8 @@ Nota: Dado que la comisión se calcula por byte, una comisión de "100 satoshis
Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Un mensaje que se adjuntó a la bitcoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Un mensaje que se adjuntó a la bitcoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red NYC3.Pay To:
@@ -2483,7 +2483,7 @@ Nota: Dado que la comisión se calcula por byte, una comisión de "100 satoshis
The NYC3 address to sign the message with
- Dirección Bitcoin con la que firmar el mensaje
+ Dirección NYC3 con la que firmar el mensajeChoose previously used address
@@ -2515,7 +2515,7 @@ Nota: Dado que la comisión se calcula por byte, una comisión de "100 satoshis
Sign the message to prove you own this NYC3 address
- Firmar el mensaje para demostrar que se posee esta dirección Bitcoin
+ Firmar el mensaje para demostrar que se posee esta dirección NYC3Sign &Message
@@ -2539,11 +2539,11 @@ Nota: Dado que la comisión se calcula por byte, una comisión de "100 satoshis
The NYC3 address the message was signed with
- La dirección Bitcoin con la que se firmó el mensaje
+ La dirección NYC3 con la que se firmó el mensajeVerify the message to ensure it was signed with the specified NYC3 address
- Verificar el mensaje para comprobar que fue firmado con la dirección Bitcoin indicada
+ Verificar el mensaje para comprobar que fue firmado con la dirección NYC3 indicadaVerify &Message
diff --git a/src/qt/locale/nyc3_es_AR.ts b/src/qt/locale/nyc3_es_AR.ts
index d9e31ba1a..2710c9caa 100644
--- a/src/qt/locale/nyc3_es_AR.ts
+++ b/src/qt/locale/nyc3_es_AR.ts
@@ -62,8 +62,8 @@
Dirección destino
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estas son tus direcciones Bitcoin para enviar pagos. Chequea siempre el monto y la dirección destino antes de mandar monedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estas son tus direcciones NYC3 para enviar pagos. Chequea siempre el monto y la dirección destino antes de mandar monedas.
diff --git a/src/qt/locale/nyc3_es_CL.ts b/src/qt/locale/nyc3_es_CL.ts
index fdb24e220..a6f289aff 100644
--- a/src/qt/locale/nyc3_es_CL.ts
+++ b/src/qt/locale/nyc3_es_CL.ts
@@ -66,11 +66,11 @@
Recibiendo direcciones
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estas son tus direcciones de Bitcoin para recibir pagos. Siempre revise el monto y la dirección de envío antes de enviar criptomonedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estas son tus direcciones de NYC3 para recibir pagos. Siempre revise el monto y la dirección de envío antes de enviar criptomonedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Estas son tus direcciones para recibir pagos. Es recomendable utilizar una nueva dirección para cada transacción.
@@ -354,8 +354,8 @@
Verificar mensaje....
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -378,12 +378,12 @@
Cifrar las claves privadas de su monedero
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themFirmar un mensaje para provar que usted es dueño de esta dirección
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificar mensajes comprobando que están firmados con direcciones Bitcoin concretas
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificar mensajes comprobando que están firmados con direcciones NYC3 concretas&File
@@ -422,8 +422,8 @@
&Opciones de linea de comando
- %n active connection(s) to Bitcoin network
- %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin
+ %n active connection(s) to NYC3 network
+ %n conexión activa hacia la red NYC3%n conexiones activas hacia la red NYC3Indexing blocks on disk...
@@ -466,8 +466,8 @@
Actualizado
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de NYC3&Window
@@ -541,8 +541,8 @@
La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Ha ocurrido un error fatal. Bitcoin no puede seguir seguro y se cerrará.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Ha ocurrido un error fatal. NYC3 no puede seguir seguro y se cerrará.
@@ -733,7 +733,7 @@
The entered address "%1" is not a valid NYC3 address.
- La dirección introducida "%1" no es una dirección Bitcoin valida.
+ La dirección introducida "%1" no es una dirección NYC3 valida.Could not unlock wallet.
@@ -817,8 +817,8 @@
usar un directorio de datos personalizado:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -829,8 +829,8 @@
Aproximadamente %1 GB de información será almacenado en este directorio.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 descargará y almacenará una copia del blockchain de Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 descargará y almacenará una copia del blockchain de NYC3.The wallet will also be stored in this directory.
@@ -1002,8 +1002,8 @@
Gastar cambio sin confirmar
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Abre automáticamente el puerto del cliente Bitcoin en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Abre automáticamente el puerto del cliente NYC3 en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado.Map port using &UPnP
@@ -1014,8 +1014,8 @@
Aceptar conexiones externas.
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Conectar a la red de Bitcoin a través de un proxy SOCKS5
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Conectar a la red de NYC3 a través de un proxy SOCKS5Proxy &IP:
@@ -1046,8 +1046,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Conectar a la red de Bitcoin a través de un proxy SOCKS5 diferente para los servicios anónimos de Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Conectar a la red de NYC3 a través de un proxy SOCKS5 diferente para los servicios anónimos de Tor.&Window
@@ -1146,8 +1146,8 @@
Formulario
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- La información entregada puede estar desactualizada. Tu billetera se sincroniza automáticamente con la red de Bitcoin después de establecer una conexión, pero este proceso aún no se ha completado.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ La información entregada puede estar desactualizada. Tu billetera se sincroniza automáticamente con la red de NYC3 después de establecer una conexión, pero este proceso aún no se ha completado.Watch-only:
@@ -1304,7 +1304,7 @@
Enter a NYC3 address (e.g. %1)
- Ingresa una dirección de Bitcoin (Ejemplo: %1)
+ Ingresa una dirección de NYC3 (Ejemplo: %1)%1 d
@@ -1684,8 +1684,8 @@
&mensaje
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Mensaje opcional adjunto a la solicitud de pago, que será mostrado cuando la solicitud sea abierta. Nota: Este mensaje no será enviado con el pago a través de la red Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Mensaje opcional adjunto a la solicitud de pago, que será mostrado cuando la solicitud sea abierta. Nota: Este mensaje no será enviado con el pago a través de la red NYC3.Use this form to request payments. All fields are <b>optional</b>.
@@ -2031,7 +2031,7 @@
Warning: Invalid NYC3 address
- Peligro: Dirección de Bitcoin inválida
+ Peligro: Dirección de NYC3 inválidaWarning: Unknown change address
@@ -2074,7 +2074,7 @@
The NYC3 address to send the payment to
- Dirección Bitcoin a enviar el pago
+ Dirección NYC3 a enviar el pagoAlt+A
@@ -2155,7 +2155,7 @@
The NYC3 address to sign the message with
- Dirección Bitcoin con la que firmar el mensaje
+ Dirección NYC3 con la que firmar el mensajeChoose previously used address
@@ -2207,11 +2207,11 @@
The NYC3 address the message was signed with
- La dirección Bitcoin con la que se firmó el mensaje
+ La dirección NYC3 con la que se firmó el mensajeVerify the message to ensure it was signed with the specified NYC3 address
- Verifica el mensaje para asegurar que fue firmado con la dirección de Bitcoin especificada.
+ Verifica el mensaje para asegurar que fue firmado con la dirección de NYC3 especificada.Verify &Message
diff --git a/src/qt/locale/nyc3_es_CO.ts b/src/qt/locale/nyc3_es_CO.ts
index 769ce5650..f54aee2b0 100644
--- a/src/qt/locale/nyc3_es_CO.ts
+++ b/src/qt/locale/nyc3_es_CO.ts
@@ -63,12 +63,12 @@ Exportar los datos en la pestaña actual a un archivo
Recibiendo dirección
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estas son sus direcciones de Bitcoin para enviar pagos. Siempre verifique el monto y la dirección de recepción antes de enviar monedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estas son sus direcciones de NYC3 para enviar pagos. Siempre verifique el monto y la dirección de recepción antes de enviar monedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estas son sus direcciones de Bitcoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estas son sus direcciones de NYC3 para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción.&Copy Address
@@ -308,7 +308,7 @@ Exportar los datos en la pestaña actual a un archivo
Send coins to a NYC3 address
- Enviando monedas a una dirección de Bitcoin
+ Enviando monedas a una dirección de NYC3Backup wallet to another location
@@ -331,8 +331,8 @@ Exportar los datos en la pestaña actual a un archivo
&Verificar Mensaje...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -355,12 +355,12 @@ Exportar los datos en la pestaña actual a un archivo
Encripta las claves privadas que pertenecen a tu billetera
- Sign messages with your Bitcoin addresses to prove you own them
- Firme mensajes con sus direcciones de Bitcoin para demostrar que los posee
+ Sign messages with your NYC3 addresses to prove you own them
+ Firme mensajes con sus direcciones de NYC3 para demostrar que los posee
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifique los mensajes para asegurarse de que fueron firmados con las direcciones de Bitcoin especificadas
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifique los mensajes para asegurarse de que fueron firmados con las direcciones de NYC3 especificadas&File
@@ -463,8 +463,8 @@ Exportar los datos en la pestaña actual a un archivo
La billetera está <b> encriptada </ b> y actualmente está <b> bloqueada </ b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Se produjo un error fatal. Bitcoin ya no puede continuar de manera segura y no continuará
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Se produjo un error fatal. NYC3 ya no puede continuar de manera segura y no continuará
@@ -710,8 +710,8 @@ Exportar los datos en la pestaña actual a un archivo
Use un directorio de datos personalizado:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3The wallet will also be stored in this directory.
@@ -875,8 +875,8 @@ Exportar los datos en la pestaña actual a un archivo
& Gastar cambio no confirmado
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Abra automáticamente el puerto cliente de Bitcoin en el enrutador. Esto solo funciona cuando su enrutador admite UPnP y está habilitado.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Abra automáticamente el puerto cliente de NYC3 en el enrutador. Esto solo funciona cuando su enrutador admite UPnP y está habilitado.Map port using &UPnP
@@ -891,8 +891,8 @@ Exportar los datos en la pestaña actual a un archivo
Permitir conexiones entrantes
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Conéctese a la red de Bitcoin a través de un proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Conéctese a la red de NYC3 a través de un proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -927,8 +927,8 @@ Exportar los datos en la pestaña actual a un archivo
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Conéctese a la red de Bitcoin a través de un proxy SOCKS5 separado para los servicios Tor ocultos.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Conéctese a la red de NYC3 a través de un proxy SOCKS5 separado para los servicios Tor ocultos.&Window
@@ -1030,8 +1030,8 @@ Exportar los datos en la pestaña actual a un archivo
Configurar
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- La información mostrada puede estar desactualizada. Su billetera se sincroniza automáticamente con la red de Bitcoin después de establecer una conexión, pero este proceso aún no se ha completado.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ La información mostrada puede estar desactualizada. Su billetera se sincroniza automáticamente con la red de NYC3 después de establecer una conexión, pero este proceso aún no se ha completado.Watch-only:
@@ -1102,7 +1102,7 @@ Exportar los datos en la pestaña actual a un archivo
Cannot start bitcoin: click-to-pay handler
- No se puede iniciar Bitcoin: controlador de clic para pagar
+ No se puede iniciar NYC3: controlador de clic para pagarURI handling
@@ -1110,7 +1110,7 @@ Exportar los datos en la pestaña actual a un archivo
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- ¡URI no puede ser analizado! Esto puede deberse a una dirección de Bitcoin no válida o a parámetros de URI mal formados.
+ ¡URI no puede ser analizado! Esto puede deberse a una dirección de NYC3 no válida o a parámetros de URI mal formados.Payment request file handling
@@ -1563,8 +1563,8 @@ Exportar los datos en la pestaña actual a un archivo
Mensaje:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un mensaje opcional para adjuntar a la solicitud de pago, que se mostrará cuando se abra la solicitud. Nota: El mensaje no se enviará con el pago a través de la red de Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un mensaje opcional para adjuntar a la solicitud de pago, que se mostrará cuando se abra la solicitud. Nota: El mensaje no se enviará con el pago a través de la red de NYC3.An optional label to associate with the new receiving address.
diff --git a/src/qt/locale/nyc3_es_DO.ts b/src/qt/locale/nyc3_es_DO.ts
index 951ee71f1..aa6a4a8f1 100644
--- a/src/qt/locale/nyc3_es_DO.ts
+++ b/src/qt/locale/nyc3_es_DO.ts
@@ -62,12 +62,12 @@
Direcciones de recepción
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estas son sus direcciones Bitcoin para enviar pagos. Compruebe siempre la cantidad y la dirección de recibo antes de transferir monedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estas son sus direcciones NYC3 para enviar pagos. Compruebe siempre la cantidad y la dirección de recibo antes de transferir monedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estas son sus direcciones de Bitcoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estas son sus direcciones de NYC3 para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción.Export Address List
@@ -235,7 +235,7 @@
Send coins to a NYC3 address
- Enviar monedas a una dirección Bitcoin
+ Enviar monedas a una dirección NYC3Backup wallet to another location
@@ -258,8 +258,8 @@
&Verificar mensaje...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -282,12 +282,12 @@
Cifrar las claves privadas de su monedero
- Sign messages with your Bitcoin addresses to prove you own them
- Firmar mensajes con sus direcciones Bitcoin para demostrar la propiedad
+ Sign messages with your NYC3 addresses to prove you own them
+ Firmar mensajes con sus direcciones NYC3 para demostrar la propiedad
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificar mensajes comprobando que están firmados con direcciones Bitcoin concretas
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificar mensajes comprobando que están firmados con direcciones NYC3 concretas&File
@@ -307,7 +307,7 @@
Request payments (generates QR codes and bitcoin: URIs)
- Solicitar pagos (genera codigo QR y URL's de Bitcoin)
+ Solicitar pagos (genera codigo QR y URL's de NYC3)Show the list of used sending addresses and labels
@@ -505,8 +505,8 @@
Utilice un directorio de datos personalizado:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -578,8 +578,8 @@
Experto
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Abrir automáticamente el puerto del cliente Bitcoin en el router. Esta opción solo funciona si el router admite UPnP y está activado.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Abrir automáticamente el puerto del cliente NYC3 en el router. Esta opción solo funciona si el router admite UPnP y está activado.Map port using &UPnP
@@ -677,8 +677,8 @@
Desde
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Bitcoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red NYC3 después de que se haya establecido una conexión, pero este proceso aún no se ha completado.Your current spendable balance
@@ -1112,7 +1112,7 @@
Sign the message to prove you own this NYC3 address
- Firmar el mensaje para demostrar que se posee esta dirección Bitcoin
+ Firmar el mensaje para demostrar que se posee esta dirección NYC3Sign &Message
@@ -1132,7 +1132,7 @@
Verify the message to ensure it was signed with the specified NYC3 address
- Verificar el mensaje para comprobar que fue firmado con la dirección Bitcoin indicada
+ Verificar el mensaje para comprobar que fue firmado con la dirección NYC3 indicadaVerify &Message
@@ -1212,7 +1212,7 @@
bitcoin-coreNYC3
- Núcleo de Bitcoin
+ Núcleo de NYC3Corrupted block database detected
diff --git a/src/qt/locale/nyc3_es_ES.ts b/src/qt/locale/nyc3_es_ES.ts
index 2ff7df7c3..7425486dc 100644
--- a/src/qt/locale/nyc3_es_ES.ts
+++ b/src/qt/locale/nyc3_es_ES.ts
@@ -66,12 +66,12 @@
Recibiendo direcciones
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estas son sus direcciones Bitcoin para enviar pagos. Verifique siempre la cantidad y la dirección de recibimiento antes de enviar monedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estas son sus direcciones NYC3 para enviar pagos. Verifique siempre la cantidad y la dirección de recibimiento antes de enviar monedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estas son sus direcciones Bitcoin para recibir pagos. Se recomienda utilizar una nueva dirección de recibimiento para cada transacción
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estas son sus direcciones NYC3 para recibir pagos. Se recomienda utilizar una nueva dirección de recibimiento para cada transacción&Copy Address
@@ -335,7 +335,7 @@
Send coins to a NYC3 address
- Enviar bitcoins a una dirección Bitcoin
+ Enviar bitcoins a una dirección NYC3Backup wallet to another location
@@ -358,8 +358,8 @@
&Verificar mensaje...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -382,12 +382,12 @@
Cifrar las claves privadas de su monedero
- Sign messages with your Bitcoin addresses to prove you own them
- Firmar mensajes con sus direcciones Bitcoin para demostrar la propiedad
+ Sign messages with your NYC3 addresses to prove you own them
+ Firmar mensajes con sus direcciones NYC3 para demostrar la propiedad
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificar mensajes comprobando que están firmados con direcciones Bitcoin concretas
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificar mensajes comprobando que están firmados con direcciones NYC3 concretas&File
@@ -426,8 +426,8 @@
&Opciones de consola de comandos
- %n active connection(s) to Bitcoin network
- %n conexión activa hacia la red Bitcoin%n conexiones activas hacia la red Bitcoin
+ %n active connection(s) to NYC3 network
+ %n conexión activa hacia la red NYC3%n conexiones activas hacia la red NYC3Indexing blocks on disk...
@@ -470,8 +470,8 @@
Actualizado
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de linea de comandos de Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de linea de comandos de NYC3&Window
@@ -570,8 +570,8 @@
El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Ha ocurrido un error fatal. Bitcoin no puede continuar de manera segura y se cerrará.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Ha ocurrido un error fatal. NYC3 no puede continuar de manera segura y se cerrará.
@@ -761,7 +761,7 @@
The entered address "%1" is not a valid NYC3 address.
- La dirección introducida "%1" no es una dirección Bitcoin válida.
+ La dirección introducida "%1" no es una dirección NYC3 válida.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -845,8 +845,8 @@
Utilizar un directorio de datos personalizado:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error: Specified data directory "%1" cannot be created.
@@ -1006,16 +1006,16 @@
&Gastar cambio no confirmado
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Abrir automáticamente el puerto del cliente Bitcoin en el router. Esta opción solo funciona si el router admite UPnP y está activado.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Abrir automáticamente el puerto del cliente NYC3 en el router. Esta opción solo funciona si el router admite UPnP y está activado.Map port using &UPnPMapear el puerto mediante &UPnP
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Conectarse a la red Bitcoin a través de un proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Conectarse a la red NYC3 a través de un proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1050,8 +1050,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Conectar a la red Bitcoin mediante un proxy SOCKS5 por separado para los servicios ocultos de Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Conectar a la red NYC3 mediante un proxy SOCKS5 por separado para los servicios ocultos de Tor.&Window
@@ -1145,8 +1145,8 @@
Formulario
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Bitcoin después de que se haya establecido una conexión, pero este proceso aún no se ha completado.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red NYC3 después de que se haya establecido una conexión, pero este proceso aún no se ha completado.Watch-only:
@@ -1237,7 +1237,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI no puede ser analizado! Esto puede ser causado por una dirección Bitcoin inválida o parametros URI mal formados.
+ URI no puede ser analizado! Esto puede ser causado por una dirección NYC3 inválida o parametros URI mal formados.Payment request file handling
@@ -1339,7 +1339,7 @@
Enter a NYC3 address (e.g. %1)
- Introducir una dirección Bitcoin (p. ej. %1)
+ Introducir una dirección NYC3 (p. ej. %1)%1 d
@@ -1714,8 +1714,8 @@
Mensaje:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red NYC3.An optional label to associate with the new receiving address.
@@ -2076,7 +2076,7 @@
Warning: Invalid NYC3 address
- Alerta: dirección Bitcoin inválida
+ Alerta: dirección NYC3 inválidaWarning: Unknown change address
@@ -2119,7 +2119,7 @@
The NYC3 address to send the payment to
- Dirección Bitcoin a la que enviar el pago
+ Dirección NYC3 a la que enviar el pagoAlt+A
@@ -2162,8 +2162,8 @@
Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Un mensaje que se adjuntó a la bitcoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Un mensaje que se adjuntó a la bitcoin: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red NYC3.Pay To:
@@ -2212,7 +2212,7 @@
The NYC3 address to sign the message with
- Dirección Bitcoin con la que firmar el mensaje
+ Dirección NYC3 con la que firmar el mensajeChoose previously used address
@@ -2244,7 +2244,7 @@
Sign the message to prove you own this NYC3 address
- Firmar el mensaje para demostrar que se posee esta dirección Bitcoin
+ Firmar el mensaje para demostrar que se posee esta dirección NYC3Sign &Message
@@ -2268,11 +2268,11 @@
The NYC3 address the message was signed with
- La dirección Bitcoin con la que se firmó el mensaje
+ La dirección NYC3 con la que se firmó el mensajeVerify the message to ensure it was signed with the specified NYC3 address
- Verificar el mensaje para comprobar que fue firmado con la dirección Bitcoin indicada
+ Verificar el mensaje para comprobar que fue firmado con la dirección NYC3 indicadaVerify &Message
diff --git a/src/qt/locale/nyc3_es_MX.ts b/src/qt/locale/nyc3_es_MX.ts
index e728c8fbb..07bb3f2df 100644
--- a/src/qt/locale/nyc3_es_MX.ts
+++ b/src/qt/locale/nyc3_es_MX.ts
@@ -66,12 +66,12 @@
Direcciones de recibo
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estas son tus direcciones de Bitcoin para enviar pagos. Siempre revisa el monto y la dirección de envío antes de enviar monedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estas son tus direcciones de NYC3 para enviar pagos. Siempre revisa el monto y la dirección de envío antes de enviar monedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estas son sus direcciones de Bitcoin para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estas son sus direcciones de NYC3 para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción.&Copy Address
@@ -187,7 +187,7 @@
Send coins to a NYC3 address
- Enviar monedas a una dirección Bitcoin
+ Enviar monedas a una dirección NYC3Backup wallet to another location
@@ -210,8 +210,8 @@
&Verificar mensaje...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -361,8 +361,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -450,8 +450,8 @@
Mensaje:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Mensaje opcional para agregar a la solicitud de pago, el cual será mostrado cuando la solicitud este abierta. Nota: El mensaje no se manda con el pago a travéz de la red de Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Mensaje opcional para agregar a la solicitud de pago, el cual será mostrado cuando la solicitud este abierta. Nota: El mensaje no se manda con el pago a travéz de la red de NYC3.Use this form to request payments. All fields are <b>optional</b>.
@@ -640,7 +640,7 @@
bitcoin-coreNYC3
- nucleo Bitcoin
+ nucleo NYC3Verifying blocks...
diff --git a/src/qt/locale/nyc3_es_UY.ts b/src/qt/locale/nyc3_es_UY.ts
index edd4fc8bd..0765600da 100644
--- a/src/qt/locale/nyc3_es_UY.ts
+++ b/src/qt/locale/nyc3_es_UY.ts
@@ -66,12 +66,12 @@
Direcciones de recepción
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estás son tus direcciones de Bitcoin para enviar pagos. Verifica siempre el monto y la dirección de recepción antes de enviar monedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estás son tus direcciones de NYC3 para enviar pagos. Verifica siempre el monto y la dirección de recepción antes de enviar monedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estas son tus direcciones de Bitcoin para recibir pagos. Es recomendable usar una nueva dirección de recepción para cada transacción.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estas son tus direcciones de NYC3 para recibir pagos. Es recomendable usar una nueva dirección de recepción para cada transacción.&Copy Address
@@ -251,15 +251,15 @@
Send coins to a NYC3 address
- Enviar monedas a una dirección Bitcoin
+ Enviar monedas a una dirección NYC3Change the passphrase used for wallet encryptionCambie la clave utilizada para el cifrado del monedero
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Show / Hide
@@ -384,8 +384,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
diff --git a/src/qt/locale/nyc3_es_VE.ts b/src/qt/locale/nyc3_es_VE.ts
index ddc9d0385..2d9dd6ef5 100644
--- a/src/qt/locale/nyc3_es_VE.ts
+++ b/src/qt/locale/nyc3_es_VE.ts
@@ -62,12 +62,12 @@
Direcciones de recepción
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estas son tus direcciones Bitcoin para realizar pagos. Verifica siempre el monto y la dirección de recepción antes de enviar monedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estas son tus direcciones NYC3 para realizar pagos. Verifica siempre el monto y la dirección de recepción antes de enviar monedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estas son tus direcciones Bitcoin para recibir pagos. Es recomendable usar una nueva dirección de recibo para cada transacción.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estas son tus direcciones NYC3 para recibir pagos. Es recomendable usar una nueva dirección de recibo para cada transacción.&Copy Address
@@ -209,7 +209,7 @@
Send coins to a NYC3 address
- Enviar monedas a una dirección Bitcoin
+ Enviar monedas a una dirección NYC3Backup wallet to another location
@@ -224,8 +224,8 @@
Abre la consola de depuración y diágnostico
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -248,12 +248,12 @@
Encriptar las llaves privadas que pertenecen a tu billetera
- Sign messages with your Bitcoin addresses to prove you own them
- Firma mensajes con tus direcciones Bitcoin para probar que eres dueño de ellas
+ Sign messages with your NYC3 addresses to prove you own them
+ Firma mensajes con tus direcciones NYC3 para probar que eres dueño de ellas
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificar mensajes para asegurar que estaban firmados con direcciones Bitcoin especificas
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificar mensajes para asegurar que estaban firmados con direcciones NYC3 especificas&File
@@ -491,8 +491,8 @@
Usa un directorio de datos personalizado:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error: Specified data directory "%1" cannot be created.
diff --git a/src/qt/locale/nyc3_et.ts b/src/qt/locale/nyc3_et.ts
index b049809af..9bff9fe71 100644
--- a/src/qt/locale/nyc3_et.ts
+++ b/src/qt/locale/nyc3_et.ts
@@ -66,12 +66,12 @@
Vastuvõtvad aadressid
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Need on sinu Bitcoin aadressid maksete saatmiseks. Ennem müntide saatmist kontrolli alati summat ja makse saaja aadressi.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Need on sinu NYC3 aadressid maksete saatmiseks. Ennem müntide saatmist kontrolli alati summat ja makse saaja aadressi.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Need on sinu Bitcoin aadressid sisenevate maksete vastu võtmiseks. Soovitav on iga tehingu tarbeks kasutada uut aadressi.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Need on sinu NYC3 aadressid sisenevate maksete vastu võtmiseks. Soovitav on iga tehingu tarbeks kasutada uut aadressi.&Copy Address
@@ -318,8 +318,8 @@
&Kontrolli sõnumit...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -342,11 +342,11 @@
Krüpteeri oma rahakoti privaatvõtmed
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themOmandi tõestamiseks allkirjasta sõnumid oma Bitcoini aadressiga
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesKinnita sõnumid kindlustamaks et need allkirjastati määratud Bitcoini aadressiga
@@ -378,7 +378,7 @@
Käsurea valikud
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network%n aktiivne ühendus Bitcoini võrku%n aktiivset ühendust Bitcoini võrku
@@ -627,7 +627,7 @@
The entered address "%1" is not a valid NYC3 address.
- Sisestatud aadress "%1" ei ole korrektne Bitcoin aadress.
+ Sisestatud aadress "%1" ei ole korrektne NYC3 aadress.Could not unlock wallet.
@@ -663,8 +663,8 @@
Teretulemast
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -736,7 +736,7 @@
Ekspert
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Bitcoini kliendi pordi automaatne avamine ruuteris. Toimib, kui sinu ruuter aktsepteerib UPnP ühendust.
@@ -835,7 +835,7 @@
Vorm
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.Kuvatav info ei pruugi olla ajakohane. Ühenduse loomisel süngitakse sinu rahakott automaatselt Bitconi võrgustikuga, kuid see toiming on hetkel lõpetamata.
@@ -1342,7 +1342,7 @@
Warning: Invalid NYC3 address
- Hoiatus: Ebakorrektne Bitcoin aadress
+ Hoiatus: Ebakorrektne NYC3 aadress(no label)
@@ -1426,7 +1426,7 @@
The NYC3 address to sign the message with
- Bitcoin aadress millega sõnum allkirjastada
+ NYC3 aadress millega sõnum allkirjastadaChoose previously used address
@@ -1478,7 +1478,7 @@
The NYC3 address the message was signed with
- Bitcoin aadress millega sõnum on allkirjastatud
+ NYC3 aadress millega sõnum on allkirjastatudVerify the message to ensure it was signed with the specified NYC3 address
diff --git a/src/qt/locale/nyc3_et_EE.ts b/src/qt/locale/nyc3_et_EE.ts
index cad9e86b5..c69e0cf74 100644
--- a/src/qt/locale/nyc3_et_EE.ts
+++ b/src/qt/locale/nyc3_et_EE.ts
@@ -130,8 +130,8 @@
Kõvakettal olevate plokkide reindekseerimine...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -261,8 +261,8 @@
Tere tulemast
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
diff --git a/src/qt/locale/nyc3_eu_ES.ts b/src/qt/locale/nyc3_eu_ES.ts
index 3e5db5a33..d7e052789 100644
--- a/src/qt/locale/nyc3_eu_ES.ts
+++ b/src/qt/locale/nyc3_eu_ES.ts
@@ -66,12 +66,12 @@
Helbideak jasotzen
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Hauek dira zuk dirua jaso dezaketen Bitcoin helbideak. Egiaztatu beti diru-kopurua eta dirua jasoko duen helbidea zuzen egon daitezen, txanponak bidali baino lehen.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Hauek dira zuk dirua jaso dezaketen NYC3 helbideak. Egiaztatu beti diru-kopurua eta dirua jasoko duen helbidea zuzen egon daitezen, txanponak bidali baino lehen.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Hauek dira zure dirua jasotzeko Bitcoin helbideak. Gomendagarria da, operazio bakoitza helbide berri batekin egitea.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Hauek dira zure dirua jasotzeko NYC3 helbideak. Gomendagarria da, operazio bakoitza helbide berri batekin egitea.&Copy Address
diff --git a/src/qt/locale/nyc3_fa.ts b/src/qt/locale/nyc3_fa.ts
index f0b5f5414..fa49af428 100644
--- a/src/qt/locale/nyc3_fa.ts
+++ b/src/qt/locale/nyc3_fa.ts
@@ -66,11 +66,11 @@
آدرسهای دریافتی
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.اینها آدرسهای بیتکوین برای پرداختها هستند. همیشه قبل از فرستادن سکهها مقدار و آدرس دریافتکننده را بررسی نمایید.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.اینها آدرسهای بیتکوین شما برای دریافت مبالغ میباشد. توصیه میشود برای هر تراکنش از یک آدرس جدید استفاده کنید.
@@ -342,7 +342,7 @@
با&زبینی پیام...
- Bitcoin
+ NYC3بیتکوین
@@ -366,11 +366,11 @@
رمزنگاری کلیدهای خصوصی متعلق به کیف پول شما
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themبرای اثبات اینکه پیامها به شما تعلق دارند، آنها را با نشانی بیتکوین خود امضا کنید
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesبرای حصول اطمینان از اینکه پیام با نشانی بیتکوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید
@@ -410,7 +410,7 @@
گزینههای خطفرمان
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network%n ارتباط فعال با شبکهٔ بیتکوین%n ارتباط فعال با شبکهٔ بیتکوین
@@ -735,7 +735,7 @@
استفاده از یک مسیر سفارشی:
- Bitcoin
+ NYC3بیتکوین
@@ -836,7 +836,7 @@
استخراج
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.باز کردن خودکار درگاه شبکهٔ بیتکوین روی روترها. تنها زمانی کار میکند که روتر از پروتکل UPnP پشتیبانی کند و این پروتکل فعال باشد.
@@ -939,7 +939,7 @@
فرم
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.اطلاعات نمایشداده شده ممکن است قدیمی باشند. بعد از این که یک اتصال با شبکه برقرار شد، کیف پول شما بهصورت خودکار با شبکهٔ بیتکوین همگامسازی میشود. اما این روند هنوز کامل نشده است.
@@ -1850,7 +1850,7 @@
bitcoin-coreNYC3
- هسته Bitcoin
+ هسته NYC3 Copyright (C) %i-%i
diff --git a/src/qt/locale/nyc3_fa_IR.ts b/src/qt/locale/nyc3_fa_IR.ts
index 1206e9850..b8f283098 100644
--- a/src/qt/locale/nyc3_fa_IR.ts
+++ b/src/qt/locale/nyc3_fa_IR.ts
@@ -66,11 +66,11 @@
آدرسهای گیرنده
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.اینها آدرسهای شما برای ارسال وجوه هستند. همیشه قبل از ارسال، مقدار و آدرس گیرنده را بررسی کنید.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.اینها آدرسهای بیتکوین شما برای دریافت وجوه هستند. توصیه میشود برای هر دریافت از یک آدرس جدید استفاده کنید.
@@ -358,7 +358,7 @@
تایید پیام
- Bitcoin
+ NYC3بیت کوین
@@ -382,11 +382,11 @@
رمزنگاری کلیدهای شخصی متعلق به کیفپول
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themپیامها را با آدرس بیتکوین خود امضا کنید تا مالکیت آنها را اثبات کنید
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesپیامها را تائید کنید تا از امضاشدن آنها با آدرس بیتکوین مطمئن شوید
@@ -426,7 +426,7 @@
گزینه های خط فرمان
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network%n ارتباط فعال به شبکه بیتکوین%n ارتباط فعال به شبکه بیتکوین
@@ -538,7 +538,7 @@
wallet رمزگذاری شد و در حال حاضر قفل است
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.خطای بحرانی رخ داده است. بیتکوین دیگر به صورت ایمن قادر به ادامه دادن نمیباشد و خارج خواهد شد.
@@ -753,7 +753,7 @@
استفاده کردن از پوشه داده مخصوص:
- Bitcoin
+ NYC3بیت کوین
@@ -899,7 +899,7 @@
شبکه Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.اتصال به شبکه بیت کوین با استفاده از پراکسی SOCKS5 برای استفاده از سرویس مخفی تور
@@ -978,7 +978,7 @@
فرم
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.اطلاعات نمایش داده شده ممکن است روزآمد نباشد. wallet شما به صورت خودکار بعد از برقراری اتصال با شبکه bitcoin به روز می شود اما این فرایند هنوز تکمیل نشده است.
diff --git a/src/qt/locale/nyc3_fi.ts b/src/qt/locale/nyc3_fi.ts
index 2b5838bce..ba72cd49a 100644
--- a/src/qt/locale/nyc3_fi.ts
+++ b/src/qt/locale/nyc3_fi.ts
@@ -66,12 +66,12 @@
Vastaanotto-osoitteet
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Nämä ovat Bitcoin-osoitteesi maksujen lähettämistä varten. Tarkista aina määrä ja vastaanotto-osoite ennen kolikoiden lähettämistä.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Nämä ovat NYC3-osoitteesi maksujen lähettämistä varten. Tarkista aina määrä ja vastaanotto-osoite ennen kolikoiden lähettämistä.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Tässä ovat Bitcoin vastaanotto-osoitteesi. On suositeltavaa käyttää uutta vastaanotto-osoitetta jokaista lähetystä varten.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Tässä ovat NYC3 vastaanotto-osoitteesi. On suositeltavaa käyttää uutta vastaanotto-osoitetta jokaista lähetystä varten.&Copy Address
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Lähetä kolikoita Bitcoin-osoitteeseen
+ Lähetä kolikoita NYC3-osoitteeseenBackup wallet to another location
@@ -366,8 +366,8 @@
Varmista &viesti...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -383,19 +383,19 @@
Show or hide the main Window
- Näytä tai piilota Bitcoin-ikkuna
+ Näytä tai piilota NYC3-ikkunaEncrypt the private keys that belong to your walletSuojaa yksityiset avaimet, jotka kuuluvat lompakkoosi
- Sign messages with your Bitcoin addresses to prove you own them
- Allekirjoita viestisi omalla Bitcoin -osoitteellasi todistaaksesi, että omistat ne
+ Sign messages with your NYC3 addresses to prove you own them
+ Allekirjoita viestisi omalla NYC3 -osoitteellasi todistaaksesi, että omistat ne
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Varmista, että viestisi on allekirjoitettu määritetyllä Bitcoin -osoitteella
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Varmista, että viestisi on allekirjoitettu määritetyllä NYC3 -osoitteella&File
@@ -434,8 +434,8 @@
&Komentorivin valinnat
- %n active connection(s) to Bitcoin network
- %n aktiivinen yhteys Bitcoin-verkkoon%n aktiivista yhteyttä Bitcoin-verkkoon
+ %n active connection(s) to NYC3 network
+ %n aktiivinen yhteys NYC3-verkkoon%n aktiivista yhteyttä NYC3-verkkoonIndexing blocks on disk...
@@ -478,7 +478,7 @@
Rahansiirtohistoria on ajan tasalla
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsNäytä %1 ohjeet saadaksesi listan mahdollisista Bitcoinin komentorivivalinnoista
@@ -578,8 +578,8 @@
Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Peruuttamaton virhe on tapahtunut. Bitcoin ei voi enää jatkaa turvallisesti ja sammutetaan.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Peruuttamaton virhe on tapahtunut. NYC3 ei voi enää jatkaa turvallisesti ja sammutetaan.
@@ -769,7 +769,7 @@
The entered address "%1" is not a valid NYC3 address.
- Antamasi osoite "%1" ei ole kelvollinen Bitcoin-osoite.
+ Antamasi osoite "%1" ei ole kelvollinen NYC3-osoite.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -865,8 +865,8 @@
Määritä oma kansio:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -877,7 +877,7 @@
Noin %1 GB tietoa varastoidaan tähän hakemistoon.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1 lataa ja tallentaa kopion Bitcoinin lohkoketjusta.
@@ -1086,8 +1086,8 @@
&Käytä varmistamattomia vaihtorahoja
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Avaa Bitcoin-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Avaa NYC3-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä.Map port using &UPnP
@@ -1102,8 +1102,8 @@
Hyväksy sisääntulevia yhteyksiä
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Yhdistä Bitcoin-verkkoon SOCKS5-välityspalvelimen kautta.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Yhdistä NYC3-verkkoon SOCKS5-välityspalvelimen kautta.&Connect through SOCKS5 proxy (default proxy):
@@ -1138,8 +1138,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Yhdistä Bitcoin-verkkoon erillisen SOCKS5-välityspalvelimen kautta piilotettuja Tor-palveluja varten.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Yhdistä NYC3-verkkoon erillisen SOCKS5-välityspalvelimen kautta piilotettuja Tor-palveluja varten.&Window
@@ -1245,8 +1245,8 @@
Lomake
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Näytetyt tiedot eivät välttämättä ole ajantasalla. Lompakkosi synkronoituu Bitcoin-verkon kanssa automaattisesti yhteyden muodostamisen jälkeen, mutta synkronointi on vielä meneillään.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Näytetyt tiedot eivät välttämättä ole ajantasalla. Lompakkosi synkronoituu NYC3-verkon kanssa automaattisesti yhteyden muodostamisen jälkeen, mutta synkronointi on vielä meneillään.Watch-only:
@@ -1341,7 +1341,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URIa ei voitu jäsentää! Tämä voi johtua virheellisestä Bitcoin-osoitteesta tai väärin muotoilluista URI parametreista.
+ URIa ei voitu jäsentää! Tämä voi johtua virheellisestä NYC3-osoitteesta tai väärin muotoilluista URI parametreista.Payment request file handling
@@ -1443,7 +1443,7 @@
Enter a NYC3 address (e.g. %1)
- Syötä Bitcoin-osoite (esim. %1)
+ Syötä NYC3-osoite (esim. %1)%1 d
@@ -1874,8 +1874,8 @@
&Viesti:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Valinnainen viesti liitetään maksupyyntöön ja näytetään avattaessa. Viestiä ei lähetetä Bitcoin-verkkoon.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Valinnainen viesti liitetään maksupyyntöön ja näytetään avattaessa. Viestiä ei lähetetä NYC3-verkkoon.An optional label to associate with the new receiving address.
@@ -2280,7 +2280,7 @@
Warning: Invalid NYC3 address
- Varoitus: Virheellinen Bitcoin-osoite
+ Varoitus: Virheellinen NYC3-osoite Warning: Unknown change address
@@ -2323,7 +2323,7 @@
The NYC3 address to send the payment to
- Bitcoin-osoite johon maksu lähetetään
+ NYC3-osoite johon maksu lähetetäänAlt+A
@@ -2370,8 +2370,8 @@
Aseta nimi tälle osoitteelle lisätäksesi sen käytettyjen osoitteiden listalle.
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Viesti joka liitettiin bitcoin: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä Bitcoin-verkkoon.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Viesti joka liitettiin bitcoin: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä NYC3-verkkoon.Pay To:
@@ -2420,7 +2420,7 @@
The NYC3 address to sign the message with
- Bitcoin-osoite jolla viesti allekirjoitetaan
+ NYC3-osoite jolla viesti allekirjoitetaanChoose previously used address
@@ -2452,7 +2452,7 @@
Sign the message to prove you own this NYC3 address
- Allekirjoita viesti todistaaksesi, että omistat tämän Bitcoin-osoitteen
+ Allekirjoita viesti todistaaksesi, että omistat tämän NYC3-osoitteenSign &Message
@@ -2476,11 +2476,11 @@
The NYC3 address the message was signed with
- Bitcoin-osoite jolla viesti on allekirjoitettu
+ NYC3-osoite jolla viesti on allekirjoitettuVerify the message to ensure it was signed with the specified NYC3 address
- Tarkista viestin allekirjoitus varmistaaksesi, että se allekirjoitettiin tietyllä Bitcoin-osoitteella
+ Tarkista viestin allekirjoitus varmistaaksesi, että se allekirjoitettiin tietyllä NYC3-osoitteellaVerify &Message
@@ -3128,7 +3128,7 @@
NYC3
- Bitcoin-ydin
+ NYC3-ydinThe %s developers
diff --git a/src/qt/locale/nyc3_fr.ts b/src/qt/locale/nyc3_fr.ts
index ac38d85f7..c328617bf 100644
--- a/src/qt/locale/nyc3_fr.ts
+++ b/src/qt/locale/nyc3_fr.ts
@@ -66,12 +66,12 @@
Adresses de réception
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Voici vos adresses Bitcoin pour envoyer des paiements. Vérifiez toujours le montant et l’adresse du destinataire avant d’envoyer des pièces.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Voici vos adresses NYC3 pour envoyer des paiements. Vérifiez toujours le montant et l’adresse du destinataire avant d’envoyer des pièces.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Voici vos adresses Bitcoin pour recevoir des paiements. Il est recommandé d’utiliser une nouvelle adresse de réception pour chaque transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Voici vos adresses NYC3 pour recevoir des paiements. Il est recommandé d’utiliser une nouvelle adresse de réception pour chaque transaction.&Copy Address
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Envoyer des pièces à une adresse Bitcoin
+ Envoyer des pièces à une adresse NYC3Backup wallet to another location
@@ -366,8 +366,8 @@
&Vérifier un message...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Chiffrer les clés privées qui appartiennent à votre porte-monnaie
- Sign messages with your Bitcoin addresses to prove you own them
- Signer les messages avec vos adresses Bitcoin pour prouver que vous les détenez
+ Sign messages with your NYC3 addresses to prove you own them
+ Signer les messages avec vos adresses NYC3 pour prouver que vous les détenez
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Vérifier les messages pour s’assurer qu’ils ont été signés avec les adresses Bitcoin indiquées
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Vérifier les messages pour s’assurer qu’ils ont été signés avec les adresses NYC3 indiquées&File
@@ -434,8 +434,8 @@
Options de ligne de &commande
- %n active connection(s) to Bitcoin network
- %n connexion active avec le réseau Bitcoin%n connexions actives avec le réseau Bitcoin
+ %n active connection(s) to NYC3 network
+ %n connexion active avec le réseau NYC3%n connexions actives avec le réseau NYC3Indexing blocks on disk...
@@ -502,8 +502,8 @@
Fermer le porte-monnaie
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Afficher le message d’aide de %1 pour obtenir la liste des options de ligne de commande Bitcoin possibles.
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Afficher le message d’aide de %1 pour obtenir la liste des options de ligne de commande NYC3 possibles.default wallet
@@ -614,8 +614,8 @@
Le porte-monnaie est <b>chiffré</b> et actuellement <b>verrouillé</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Une erreur fatale est survenue. Bitcoin ne peut plus continuer en toute sécurité et va s’arrêter.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Une erreur fatale est survenue. NYC3 ne peut plus continuer en toute sécurité et va s’arrêter.
@@ -805,7 +805,7 @@
The entered address "%1" is not a valid NYC3 address.
- L’adresse saisie « %1 » n’est pas une adresse Bitcoin valide.
+ L’adresse saisie « %1 » n’est pas une adresse NYC3 valide.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -901,8 +901,8 @@
Utiliser un répertoire de données personnalisé :
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -913,8 +913,8 @@
Approximativement %1 Go de données seront stockés dans ce répertoire.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 téléchargera et stockera une copie de la chaîne de blocs Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 téléchargera et stockera une copie de la chaîne de blocs NYC3.The wallet will also be stored in this directory.
@@ -945,7 +945,7 @@
Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below.
- Les transactions récentes ne sont peut-être pas encore visibles et par conséquent le solde de votre porte-monnaie est peut-être erroné. Ces informations seront justes quand votre porte-monnaie aura fini de se synchroniser avec le réseau Bitcoin, comme décrit ci-dessous.
+ Les transactions récentes ne sont peut-être pas encore visibles et par conséquent le solde de votre porte-monnaie est peut-être erroné. Ces informations seront justes quand votre porte-monnaie aura fini de se synchroniser avec le réseau NYC3, comme décrit ci-dessous.Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network.
@@ -1130,8 +1130,8 @@
&Dépenser la monnaie non confirmée
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Ouvrir automatiquement le port du client Bitcoin sur le routeur. Cela ne fonctionne que si votre routeur prend en charge l’UPnP et si la fonction est activée.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Ouvrir automatiquement le port du client NYC3 sur le routeur. Cela ne fonctionne que si votre routeur prend en charge l’UPnP et si la fonction est activée.Map port using &UPnP
@@ -1146,8 +1146,8 @@
Permettre les connexions e&ntrantes
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Se connecter au réseau Bitcoin par un mandataire SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Se connecter au réseau NYC3 par un mandataire SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1182,8 +1182,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Se connecter au réseau Bitcoin au travers d’un mandataire SOCKS5 séparé pour les services cachés de Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Se connecter au réseau NYC3 au travers d’un mandataire SOCKS5 séparé pour les services cachés de Tor.&Window
@@ -1293,8 +1293,8 @@
Formulaire
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Les informations affichées peuvent être obsolètes. Votre porte-monnaie se synchronise automatiquement avec le réseau Bitcoin dès qu’une connexion est établie, mais ce processus n’est pas encore achevé.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Les informations affichées peuvent être obsolètes. Votre porte-monnaie se synchronise automatiquement avec le réseau NYC3 dès qu’une connexion est établie, mais ce processus n’est pas encore achevé.Watch-only:
@@ -1397,7 +1397,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- L’URI ne peut pas être analysée ! Cela peut être causé par une adresse Bitcoin invalide ou par des paramètres d’URI mal formés.
+ L’URI ne peut pas être analysée ! Cela peut être causé par une adresse NYC3 invalide ou par des paramètres d’URI mal formés.Payment request file handling
@@ -1499,7 +1499,7 @@
Enter a NYC3 address (e.g. %1)
- Saisir une adresse Bitcoin (p. ex. %1)
+ Saisir une adresse NYC3 (p. ex. %1)%1 d
@@ -1954,8 +1954,8 @@
M&essage :
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un message facultatif à joindre à la demande de paiement et qui sera affiché à l’ouverture de celle-ci. Note : Le message ne sera pas envoyé avec le paiement par le réseau Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un message facultatif à joindre à la demande de paiement et qui sera affiché à l’ouverture de celle-ci. Note : Le message ne sera pas envoyé avec le paiement par le réseau NYC3.An optional label to associate with the new receiving address.
@@ -2384,7 +2384,7 @@ Note : Les frais étant calculés par octet, des frais de « 100 satoshis par
Warning: Invalid NYC3 address
- Avertissement : L’adresse Bitcoin est invalide
+ Avertissement : L’adresse NYC3 est invalideWarning: Unknown change address
@@ -2427,7 +2427,7 @@ Note : Les frais étant calculés par octet, des frais de « 100 satoshis par
The NYC3 address to send the payment to
- L’adresse Bitcoin à laquelle envoyer le paiement
+ L’adresse NYC3 à laquelle envoyer le paiementAlt+A
@@ -2474,8 +2474,8 @@ Note : Les frais étant calculés par octet, des frais de « 100 satoshis par
Saisir une étiquette pour cette adresse afin de l’ajouter à la liste d’adresses utilisées
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Un message qui était joint à l’URI bitcoin: et qui sera stocké avec la transaction pour référence. Note : Ce message ne sera pas envoyé par le réseau Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Un message qui était joint à l’URI bitcoin: et qui sera stocké avec la transaction pour référence. Note : Ce message ne sera pas envoyé par le réseau NYC3.Pay To:
@@ -2524,7 +2524,7 @@ Note : Les frais étant calculés par octet, des frais de « 100 satoshis par
The NYC3 address to sign the message with
- L’adresse Bitcoin avec laquelle signer le message
+ L’adresse NYC3 avec laquelle signer le messageChoose previously used address
@@ -2556,7 +2556,7 @@ Note : Les frais étant calculés par octet, des frais de « 100 satoshis par
Sign the message to prove you own this NYC3 address
- Signer le message afin de prouver que vous détenez cette adresse Bitcoin
+ Signer le message afin de prouver que vous détenez cette adresse NYC3Sign &Message
@@ -2580,11 +2580,11 @@ Note : Les frais étant calculés par octet, des frais de « 100 satoshis par
The NYC3 address the message was signed with
- L’adresse Bitcoin avec laquelle le message a été signé
+ L’adresse NYC3 avec laquelle le message a été signéVerify the message to ensure it was signed with the specified NYC3 address
- Vérifier le message pour s’assurer qu’il a été signé avec l’adresse Bitcoin indiquée
+ Vérifier le message pour s’assurer qu’il a été signé avec l’adresse NYC3 indiquéeVerify &Message
diff --git a/src/qt/locale/nyc3_fr_FR.ts b/src/qt/locale/nyc3_fr_FR.ts
index cb489a34c..40294c098 100644
--- a/src/qt/locale/nyc3_fr_FR.ts
+++ b/src/qt/locale/nyc3_fr_FR.ts
@@ -66,12 +66,12 @@
Adresses de réception
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Ceci sont vos addresses Bitcoin pour envoyer vos paiements. Il faut toujours verifier les montants et l'addresse de reception avant de valider la transaction.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Ceci sont vos addresses NYC3 pour envoyer vos paiements. Il faut toujours verifier les montants et l'addresse de reception avant de valider la transaction.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Ceci sont vos addresses Bitcoin pour recevoir vos paiements. Il est recommandé d'utiliser une nouvelle adresse de recepetion pour chaque transaction
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Ceci sont vos addresses NYC3 pour recevoir vos paiements. Il est recommandé d'utiliser une nouvelle adresse de recepetion pour chaque transaction&Copy Address
@@ -339,7 +339,7 @@
Send coins to a NYC3 address
- Envoyer des pièces à une adresse Bitcoin
+ Envoyer des pièces à une adresse NYC3Backup wallet to another location
@@ -362,8 +362,8 @@
&Vérification du message
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -386,12 +386,12 @@
Crypter les clé privées qui appartiennent votre portefeuille
- Sign messages with your Bitcoin addresses to prove you own them
- Signer vos messages avec vos adresses Bitcoin pour prouver que vous les détenez
+ Sign messages with your NYC3 addresses to prove you own them
+ Signer vos messages avec vos adresses NYC3 pour prouver que vous les détenez
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Vérifier les messages pour s'assurer qu'ils soient signés avec les adresses Bitcoin spécifiées
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Vérifier les messages pour s'assurer qu'ils soient signés avec les adresses NYC3 spécifiées&File
@@ -430,8 +430,8 @@
&Options de ligne de commande
- %n active connection(s) to Bitcoin network
- %n connexion active avec le réseau Bitcoin%n connexions actives avec le réseau Bitcoin
+ %n active connection(s) to NYC3 network
+ %n connexion active avec le réseau NYC3%n connexions actives avec le réseau NYC3Indexing blocks on disk...
@@ -470,8 +470,8 @@
À jour
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Afficher le %1 message d'aide pour récupérer une liste des options de ligne de commande Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Afficher le %1 message d'aide pour récupérer une liste des options de ligne de commande NYC3default wallet
@@ -554,8 +554,8 @@
Le porte-monnaie est <b>chiffré</b> et est actuellement <b>verrouillé</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Une erreur fatale a eu lieu. Bitcoin ne peut plus continuer en toute sécurité et va s'éteindre
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Une erreur fatale a eu lieu. NYC3 ne peut plus continuer en toute sécurité et va s'éteindre
@@ -745,7 +745,7 @@
The entered address "%1" is not a valid NYC3 address.
- L'adresse entrée "%1" n'est pas une adresse Bitcoin valide.
+ L'adresse entrée "%1" n'est pas une adresse NYC3 valide.Could not unlock wallet.
@@ -817,8 +817,8 @@
Utiliser votre propre répertoire
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -910,8 +910,8 @@
Expert
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Ouvrir le port du client Bitcoin automatiquement sur le routeur. Cela ne fonctionne que si votre routeur supporte l'UPnP et si la fonctionnalité est activée.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Ouvrir le port du client NYC3 automatiquement sur le routeur. Cela ne fonctionne que si votre routeur supporte l'UPnP et si la fonctionnalité est activée.Map port using &UPnP
@@ -1111,7 +1111,7 @@
Enter a NYC3 address (e.g. %1)
- Entrer une adresse Bitcoin (e.g. %1)
+ Entrer une adresse NYC3 (e.g. %1)%1 d
@@ -1672,7 +1672,7 @@
Warning: Invalid NYC3 address
- Attention: Adresse Bitcoin Invalide
+ Attention: Adresse NYC3 Invalide(no label)
diff --git a/src/qt/locale/nyc3_gl.ts b/src/qt/locale/nyc3_gl.ts
index 211040ba0..2cdb52fe3 100644
--- a/src/qt/locale/nyc3_gl.ts
+++ b/src/qt/locale/nyc3_gl.ts
@@ -131,7 +131,7 @@
Send coins to a NYC3 address
- Enviar moedas a unha dirección Bitcoin
+ Enviar moedas a unha dirección NYC3Backup wallet to another location
@@ -154,8 +154,8 @@
&Verificar mensaxe...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -178,12 +178,12 @@
Encriptar as claves privadas que pertencen ao teu moedeiro
- Sign messages with your Bitcoin addresses to prove you own them
- Asina mensaxes coas túas direccións Bitcoin para probar que te pertencen
+ Sign messages with your NYC3 addresses to prove you own them
+ Asina mensaxes coas túas direccións NYC3 para probar que te pertencen
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificar mensaxes para asegurar que foron asinados con direccións Bitcoin dadas.
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificar mensaxes para asegurar que foron asinados con direccións NYC3 dadas.&File
@@ -397,8 +397,8 @@
Empregar un directorio de datos personalizado
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -462,8 +462,8 @@
Moedeiro
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Abrir automáticamente o porto do cliente Bitcoin no router. Esto so funciona se o teu router soporta UPnP e está habilitado.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Abrir automáticamente o porto do cliente NYC3 no router. Esto so funciona se o teu router soporta UPnP e está habilitado.Map port using &UPnP
@@ -545,8 +545,8 @@
Formulario
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- A información amosada por estar desactualizada. O teu moedeiro sincronízase automáticamente coa rede Bitcoin despois de que se estableza unha conexión, pero este proceso non está todavía rematado.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ A información amosada por estar desactualizada. O teu moedeiro sincronízase automáticamente coa rede NYC3 despois de que se estableza unha conexión, pero este proceso non está todavía rematado.Your current spendable balance
@@ -920,7 +920,7 @@
Sign the message to prove you own this NYC3 address
- Asina a mensaxe para probar que posees esta dirección Bitcoin
+ Asina a mensaxe para probar que posees esta dirección NYC3Sign &Message
@@ -940,7 +940,7 @@
Verify the message to ensure it was signed with the specified NYC3 address
- Verificar a mensaxe para asegurar que foi asinada coa dirección Bitcoin especificada
+ Verificar a mensaxe para asegurar que foi asinada coa dirección NYC3 especificadaVerify &Message
@@ -1000,7 +1000,7 @@
bitcoin-coreNYC3
- Core de Bitcoin
+ Core de NYC3Corrupted block database detected
diff --git a/src/qt/locale/nyc3_he.ts b/src/qt/locale/nyc3_he.ts
index 4847684d7..0f1474ff6 100644
--- a/src/qt/locale/nyc3_he.ts
+++ b/src/qt/locale/nyc3_he.ts
@@ -66,11 +66,11 @@
כתובות לקבלה
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.אלו הן כתובות הביטקוין שלך לשליחת תשלומים. חשוב לבדוק את הסכום ואת הכתובת המקבלת לפני שליחת מטבעות.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.אלו הן כתובות הביטקוין שלך לקבלת תשלומים. מומלץ להשתמש בכתובת חדשה לכל העברה.
@@ -362,7 +362,7 @@
&אימות הודעה…
- Bitcoin
+ NYC3ביטקוין
@@ -386,11 +386,11 @@
הצפנת המפתחות הפרטיים ששייכים לארנק שלך
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themחתום על הודעות עם כתובות הביטקוין שלך כדי להוכיח שהן בבעלותך
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesאמת הודעות כדי להבטיח שהן נחתמו עם כתובת ביטקוין מסוימות
@@ -430,7 +430,7 @@
אפשרויות &שורת הפקודה
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 networkחיבור אחד פעיל לרשת ביטקוין%n חיבורים פעילים לרשת ביטקוין%n חיבורים פעילים לרשת ביטקוין%n חיבורים פעילים לרשת ביטקוין
@@ -470,7 +470,7 @@
עדכני
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsיש להציג את הודעת העזרה של %1 כדי להציג רשימה עם אפשרויות שורת פקודה לביטקוין
@@ -554,7 +554,7 @@
הארנק <b>מוצפן</b> ו<b>נעול</b> כרגע
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.אירעה שגיאה חמורה. אין אפשרות להשתמש עוד בביטקוין באופן מאובטח והיישום ייסגר.
@@ -841,7 +841,7 @@
שימוש בתיקיית נתונים מותאמת אישית:
- Bitcoin
+ NYC3ביטקוין
@@ -853,7 +853,7 @@
מידע בנפח של כ-%1 ג׳יגה-בייט יאוחסן בתיקייה זו.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1 תוריד ותאחסן עותק של שרשרת הבלוקים של ביטקוין.
@@ -1054,7 +1054,7 @@
עודף &בלתי מאושר מההשקעה
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.פתיחת הפתחה של ביטקוין בנתב באופן אוטומטי. עובד רק אם UPnP מופעל ונתמך בנתב.
@@ -1070,7 +1070,7 @@
לאפשר חיבורים &נכנסים
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.התחבר לרשת הביטקוין דרך פרוקסי SOCKS5.
@@ -1106,7 +1106,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.התחברות לרשת ביטקוין דרך מתווך SOCKS5 נפרד לשירותי Tor נסתרים.
@@ -1209,7 +1209,7 @@
טופס
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.המידע המוצג עשוי להיות מיושן. הארנק שלך מסתנכרן באופן אוטומטי עם רשת הביטקוין לאחר יצירת החיבור, אך התהליך טרם הסתיים.
@@ -1842,7 +1842,7 @@
הו&דעה:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.הודעת רשות לצירוף לבקשת התשלום שתוצג בעת פתיחת הבקשה. לתשומת לבך: ההודעה לא תישלח עם התשלום ברשת ביטקוין.
@@ -2338,7 +2338,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
יש להזין תווית עבור כתובת זו כדי להוסיף אותה לרשימת הכתובות בשימוש
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.הודעה שצורפה לביטקוין: כתובת שתאוחסן בהעברה לצורך מעקב מצדך. לתשומת לבך: הודעה זו לא תישלח ברשת הביטקוין.
diff --git a/src/qt/locale/nyc3_hi_IN.ts b/src/qt/locale/nyc3_hi_IN.ts
index 4da7af156..91d0e3ecd 100644
--- a/src/qt/locale/nyc3_hi_IN.ts
+++ b/src/qt/locale/nyc3_hi_IN.ts
@@ -62,11 +62,11 @@
पतों को प्राप्त कर रहा है
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.ये भुगतान भेजने के लिए ये आपके बिटकॉइन पते हैं। हमेशा सिक्के भेजने से पहले राशि और प्राप्तकर्ता पते की जांच करें।
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.भुगतान प्राप्त करने के लिए ये आपके बीटकोइन पते हैं प्रत्येक लेनदेन के लिए एक नया प्राप्त पता उपयोग करने की सिफारिश की जाती है।
@@ -183,7 +183,7 @@
पहचान शब्द/अक्षर जो वॉलेट एनक्रिपशन के लिए इस्तेमाल किया है उसे बदलिए!
- Bitcoin
+ NYC3बीटकोइन
@@ -290,7 +290,7 @@
Intro
- Bitcoin
+ NYC3बीटकोइन
diff --git a/src/qt/locale/nyc3_hr.ts b/src/qt/locale/nyc3_hr.ts
index ba56ef8a5..46a4c7cab 100644
--- a/src/qt/locale/nyc3_hr.ts
+++ b/src/qt/locale/nyc3_hr.ts
@@ -66,12 +66,12 @@
Adrese primatelja
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Ovo su vaše Bitcoin adrese za slanje novca. Uvijek provjerite iznos i adresu primatelja prije slanja novca.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Ovo su vaše NYC3 adrese za slanje novca. Uvijek provjerite iznos i adresu primatelja prije slanja novca.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Ovo su vaše Bitcoin adrese za primanje novca. Preporučeno je da koristite novu primateljsku adresu za svaku transakciju.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Ovo su vaše NYC3 adrese za primanje novca. Preporučeno je da koristite novu primateljsku adresu za svaku transakciju.&Copy Address
@@ -339,7 +339,7 @@
Send coins to a NYC3 address
- Pošaljite novac na Bitcoin adresu
+ Pošaljite novac na NYC3 adresuBackup wallet to another location
@@ -362,8 +362,8 @@
&Potvrdite poruku...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -386,12 +386,12 @@
Šifrirajte privatne ključeve u novčaniku
- Sign messages with your Bitcoin addresses to prove you own them
- Poruku potpišemo s Bitcoin adresom, kako bi dokazali vlasništvo nad tom adresom
+ Sign messages with your NYC3 addresses to prove you own them
+ Poruku potpišemo s NYC3 adresom, kako bi dokazali vlasništvo nad tom adresom
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Provjerite poruku da je potpisana s navedenom Bitcoin adresom
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Provjerite poruku da je potpisana s navedenom NYC3 adresom&File
@@ -430,8 +430,8 @@
Opcije &naredbene linije
- %n active connection(s) to Bitcoin network
- %n aktivna veza na Bitcoin mrežu%n aktivnih veza na Bitcoin mrežu%n aktivnih veza na Bitcoin mrežu
+ %n active connection(s) to NYC3 network
+ %n aktivna veza na NYC3 mrežu%n aktivnih veza na NYC3 mrežu%n aktivnih veza na NYC3 mrežuIndexing blocks on disk...
@@ -474,7 +474,7 @@
Ažurno
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsPrikažite pomoć programa %1 kako biste ispisali moguće opcije preko terminala
@@ -557,8 +557,8 @@
Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Dogodila se kobna greška. Bitcoin ne može više sigurno nastaviti te će se zatvoriti.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Dogodila se kobna greška. NYC3 ne može više sigurno nastaviti te će se zatvoriti.
@@ -748,7 +748,7 @@
The entered address "%1" is not a valid NYC3 address.
- Upisana adresa "%1" nije valjana Bitcoin adresa.
+ Upisana adresa "%1" nije valjana NYC3 adresa.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -844,8 +844,8 @@
Odaberite različitu podatkovnu mapu:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -856,7 +856,7 @@
Otprilike %1 GB podataka bit će spremljeno u ovoj mapi.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1 preuzet će i pohraniti kopiju Bitcoinovog lanca blokova.
@@ -1061,8 +1061,8 @@
&Trošenje nepotvrđenih vraćenih iznosa
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Automatski otvori port Bitcoin klijenta na ruteru. To radi samo ako ruter podržava UPnP i ako je omogućen.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatski otvori port NYC3 klijenta na ruteru. To radi samo ako ruter podržava UPnP i ako je omogućen.Map port using &UPnP
@@ -1077,8 +1077,8 @@
Dozvolite dolazeće veze
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Spojite se na Bitcoin mrežu kroz SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Spojite se na NYC3 mrežu kroz SOCKS5 proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -1113,8 +1113,8 @@
Tora
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Spojite se na Bitcoin mrežu kroz zaseban SOCKS5 proxy za povezivanje na Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Spojite se na NYC3 mrežu kroz zaseban SOCKS5 proxy za povezivanje na Tor.&Window
@@ -1220,8 +1220,8 @@
Oblik
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Prikazani podatci mogu biti zastarjeli. Vaš novčanik se automatski sinkronizira s Bitcoin mrežom kada je veza uspostavljena, ali taj proces još nije završen.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Prikazani podatci mogu biti zastarjeli. Vaš novčanik se automatski sinkronizira s NYC3 mrežom kada je veza uspostavljena, ali taj proces još nije završen.Watch-only:
@@ -1316,7 +1316,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- Ne može se parsirati URI! Uzrok tomu može biti nevažeća Bitcoin adresa ili neispravni parametri kod URI-a.
+ Ne može se parsirati URI! Uzrok tomu može biti nevažeća NYC3 adresa ili neispravni parametri kod URI-a.Payment request file handling
@@ -1418,7 +1418,7 @@
Enter a NYC3 address (e.g. %1)
- Unesite Bitcoin adresu (npr. %1)
+ Unesite NYC3 adresu (npr. %1)%1 d
@@ -1857,8 +1857,8 @@
&Poruka:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Opcionalna poruka koja se može dodati kao privitak zahtjevu za plaćanje. Bit će prikazana kad je zahtjev otvoren. Napomena: Ova poruka neće biti poslana zajedno s uplatom preko Bitcoin mreže.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Opcionalna poruka koja se može dodati kao privitak zahtjevu za plaćanje. Bit će prikazana kad je zahtjev otvoren. Napomena: Ova poruka neće biti poslana zajedno s uplatom preko NYC3 mreže.An optional label to associate with the new receiving address.
@@ -2279,7 +2279,7 @@ Napomena: Budući da se naknada računa po bajtu, naknada od "100 satošija po k
Warning: Invalid NYC3 address
- Upozorenje: Nevažeća Bitcoin adresa
+ Upozorenje: Nevažeća NYC3 adresaWarning: Unknown change address
@@ -2322,7 +2322,7 @@ Napomena: Budući da se naknada računa po bajtu, naknada od "100 satošija po k
The NYC3 address to send the payment to
- Bitcoin adresa na koju ćete poslati uplatu
+ NYC3 adresa na koju ćete poslati uplatuAlt+A
@@ -2369,8 +2369,8 @@ Napomena: Budući da se naknada računa po bajtu, naknada od "100 satošija po k
Unesite oznaku za ovu adresu kako bi ju dodali u vaš adresar
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Poruka koja je dodana uplati: URI koji će biti spremljen s transakcijom za referencu. Napomena: Ova poruka neće biti poslana preko Bitcoin mreže.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Poruka koja je dodana uplati: URI koji će biti spremljen s transakcijom za referencu. Napomena: Ova poruka neće biti poslana preko NYC3 mreže.Pay To:
@@ -2419,7 +2419,7 @@ Napomena: Budući da se naknada računa po bajtu, naknada od "100 satošija po k
The NYC3 address to sign the message with
- Bitcoin adresa pomoću koje ćete potpisati poruku
+ NYC3 adresa pomoću koje ćete potpisati porukuChoose previously used address
@@ -2451,7 +2451,7 @@ Napomena: Budući da se naknada računa po bajtu, naknada od "100 satošija po k
Sign the message to prove you own this NYC3 address
- Potpišite poruku kako biste dokazali da posjedujete ovu Bitcoin adresu
+ Potpišite poruku kako biste dokazali da posjedujete ovu NYC3 adresuSign &Message
@@ -2475,11 +2475,11 @@ Napomena: Budući da se naknada računa po bajtu, naknada od "100 satošija po k
The NYC3 address the message was signed with
- Bitcoin adresa kojom je poruka potpisana
+ NYC3 adresa kojom je poruka potpisanaVerify the message to ensure it was signed with the specified NYC3 address
- Provjerite poruku da budete sigurni da je potpisana zadanom Bitcoin adresom
+ Provjerite poruku da budete sigurni da je potpisana zadanom NYC3 adresomVerify &Message
diff --git a/src/qt/locale/nyc3_hu.ts b/src/qt/locale/nyc3_hu.ts
index 8a4904102..0033080e4 100644
--- a/src/qt/locale/nyc3_hu.ts
+++ b/src/qt/locale/nyc3_hu.ts
@@ -66,12 +66,12 @@
Fogadási cím
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Ezek a Bitcoin címeid kifizetések küldéséhez. Mindíg ellenőrizd az összeget és a fogadó címet mielőtt coinokat küldenél.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Ezek a NYC3 címeid kifizetések küldéséhez. Mindíg ellenőrizd az összeget és a fogadó címet mielőtt coinokat küldenél.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Ezek a Bitcoin címeid kifizetések fogadásához. Ajánlott új címet használni minden új fogadáshoz.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Ezek a NYC3 címeid kifizetések fogadásához. Ajánlott új címet használni minden új fogadáshoz.&Copy Address
@@ -328,7 +328,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Send coins to a NYC3 address
- Bitcoin küldése megadott címre
+ NYC3 küldése megadott címreBackup wallet to another location
@@ -351,8 +351,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Üzenet &valódiságának ellenőrzése
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -375,12 +375,12 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
A tárcádhoz tartozó privát kulcsok titkosítása
- Sign messages with your Bitcoin addresses to prove you own them
- Üzenetek aláírása a Bitcoin-címmeiddel, amivel bizonyítod, hogy a cím a sajátod
+ Sign messages with your NYC3 addresses to prove you own them
+ Üzenetek aláírása a NYC3-címmeiddel, amivel bizonyítod, hogy a cím a sajátod
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Üzenetek ellenőrzése, hogy valóban a megjelölt Bitcoin-címekkel vannak-e aláírva
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Üzenetek ellenőrzése, hogy valóban a megjelölt NYC3-címekkel vannak-e aláírva&File
@@ -419,8 +419,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Paran&cssor kapcsolók
- %n active connection(s) to Bitcoin network
- %n aktív kapcsolat a Bitcoin hálózathoz%n aktív kapcsolat a Bitcoin hálózathoz
+ %n active connection(s) to NYC3 network
+ %n aktív kapcsolat a NYC3 hálózathoz%n aktív kapcsolat a NYC3 hálózathozIndexing blocks on disk...
@@ -463,8 +463,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Naprakész
- Show the %1 help message to get a list with possible Bitcoin command-line options
- A %1 súgó megjelenítése a Bitcoin lehetséges parancssori kapcsolóinak listájával
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ A %1 súgó megjelenítése a NYC3 lehetséges parancssori kapcsolóinak listájával&Window
@@ -541,8 +541,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Tárca <b>kódolva</b> és jelenleg <b>zárva</b>.
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Végzetes hiba történt. A Bitcoin működése nem biztonságos és hamarosan leáll.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Végzetes hiba történt. A NYC3 működése nem biztonságos és hamarosan leáll.
@@ -732,7 +732,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
The entered address "%1" is not a valid NYC3 address.
- A megadott "%1" cím nem egy érvényes Bitcoin-cím.
+ A megadott "%1" cím nem egy érvényes NYC3-cím.Could not unlock wallet.
@@ -816,8 +816,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Saját adatkönyvtár használata:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -828,8 +828,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Hozzávetőlegesen %1 GB adatot fogunk ebben a könyvtárban tárolni.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 le fog töltődni és a Bitcoin blokk lánc egy másolatát fogja tárolni.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 le fog töltődni és a NYC3 blokk lánc egy másolatát fogja tárolni.The wallet will also be stored in this directory.
@@ -1009,8 +1009,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
&Költése a a jóváhagyatlan visszajárónak
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- A Bitcoin-kliens portjának automatikus megnyitása a routeren. Ez csak akkor működik, ha a routered támogatja az UPnP-t és az engedélyezve is van rajta.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ A NYC3-kliens portjának automatikus megnyitása a routeren. Ez csak akkor működik, ha a routered támogatja az UPnP-t és az engedélyezve is van rajta.Map port using &UPnP
@@ -1025,8 +1025,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Bejövő kapcsolatok engedélyezése.
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Csatlakozás a Bitcoin hálózatához SOCKS5 proxyn keresztül
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Csatlakozás a NYC3 hálózatához SOCKS5 proxyn keresztül&Connect through SOCKS5 proxy (default proxy):
@@ -1061,8 +1061,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Csatlakozás a Bitcoin hálózathoz külön SOCKS5 proxy használatával a Tor rejtett szolgáltatásainak eléréséhez.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Csatlakozás a NYC3 hálózathoz külön SOCKS5 proxy használatával a Tor rejtett szolgáltatásainak eléréséhez.&Window
@@ -1168,8 +1168,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Űrlap
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- A kijelzett információ lehet, hogy elavult. A pénztárcája automatikusan szinkronizálja magát a Bitcoin hálózattal miután a kapcsolat létrejön, de ez e folyamat még nem fejeződött be.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ A kijelzett információ lehet, hogy elavult. A pénztárcája automatikusan szinkronizálja magát a NYC3 hálózattal miután a kapcsolat létrejön, de ez e folyamat még nem fejeződött be.Watch-only:
@@ -1256,7 +1256,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- Nem sikerült az URI elemzése! Ezt okozhatja érvénytelen Bitcoin cím, vagy rossz URI paraméterezés.
+ Nem sikerült az URI elemzése! Ezt okozhatja érvénytelen NYC3 cím, vagy rossz URI paraméterezés.Payment request file handling
@@ -1354,7 +1354,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Enter a NYC3 address (e.g. %1)
- Ad meg egy Bitcoin címet (pl: %1)
+ Ad meg egy NYC3 címet (pl: %1)%1 d
@@ -1765,8 +1765,8 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
&Üzenet:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Egy opcionális üzenet csatolása a fizetési kérelemhez, amely megjelenik a kérelem megnyitásakor. Megjegyzés: Az üzenet nem lesz elküldve a fizetséggel a Bitcoin hálózaton keresztül.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Egy opcionális üzenet csatolása a fizetési kérelemhez, amely megjelenik a kérelem megnyitásakor. Megjegyzés: Az üzenet nem lesz elküldve a fizetséggel a NYC3 hálózaton keresztül.An optional label to associate with the new receiving address.
@@ -2143,7 +2143,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
Warning: Invalid NYC3 address
- Figyelmeztetés: Érvénytelen Bitcoin cím
+ Figyelmeztetés: Érvénytelen NYC3 címWarning: Unknown change address
@@ -2186,7 +2186,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
The NYC3 address to send the payment to
- Erre a Bitcoin címre küldje az összeget
+ Erre a NYC3 címre küldje az összegetAlt+A
@@ -2271,7 +2271,7 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
The NYC3 address to sign the message with
- Bitcoin cím, amivel alá kívánja írni az üzenetet
+ NYC3 cím, amivel alá kívánja írni az üzenetetChoose previously used address
@@ -2319,11 +2319,11 @@ Kérem a kulcsmondatban használjon <b> tíz vagy több véletlenszerű ka
The NYC3 address the message was signed with
- Bitcoin cím, amivel aláírta az üzenetet
+ NYC3 cím, amivel aláírta az üzenetetVerify the message to ensure it was signed with the specified NYC3 address
- Ellenőrizze az üzenetet, hogy valóban a megjelölt Bitcoin címmel van-e aláírva
+ Ellenőrizze az üzenetet, hogy valóban a megjelölt NYC3 címmel van-e aláírvaVerify &Message
diff --git a/src/qt/locale/nyc3_id.ts b/src/qt/locale/nyc3_id.ts
index 3d3203616..2c0368cbe 100644
--- a/src/qt/locale/nyc3_id.ts
+++ b/src/qt/locale/nyc3_id.ts
@@ -66,12 +66,12 @@
Alamat menerima
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Ini adalah alamat Bitcoin anda untuk mengirim pembayaran. Selalu periksa jumlah dan alamat penerima sebelum mengirim koin
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Ini adalah alamat NYC3 anda untuk mengirim pembayaran. Selalu periksa jumlah dan alamat penerima sebelum mengirim koin
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Ini adalah alamat Bitcoin anda untuk menerima pembayaran. Disarankan untuk menggunakan alamat penerimaan baru untuk setiap transaksi
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Ini adalah alamat NYC3 anda untuk menerima pembayaran. Disarankan untuk menggunakan alamat penerimaan baru untuk setiap transaksi&Copy Address
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Kirim koin ke alamat Bitcoin
+ Kirim koin ke alamat NYC3Backup wallet to another location
@@ -366,8 +366,8 @@
&Verifikasi pesan...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Enkripsi private keys wallet anda
- Sign messages with your Bitcoin addresses to prove you own them
- Tambahkan pesan di alamat Bitcoin untuk membuktikan bahwa anda pemiliknya
+ Sign messages with your NYC3 addresses to prove you own them
+ Tambahkan pesan di alamat NYC3 untuk membuktikan bahwa anda pemiliknya
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifikasi pesan untuk memastikan bahwa telah ditanda tangani dengan alamat Bitcoin tertentu
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifikasi pesan untuk memastikan bahwa telah ditanda tangani dengan alamat NYC3 tertentu&File
@@ -434,8 +434,8 @@
opsi &Command-line
- %n active connection(s) to Bitcoin network
- %n koneksi aktif pada jaringan Bitcoin
+ %n active connection(s) to NYC3 network
+ %n koneksi aktif pada jaringan NYC3Indexing blocks on disk...
@@ -486,8 +486,8 @@
Address &Penerima
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Perlihatkan %1 pesan yang didapat dari daftar dengan opsi command-line Bitcoin yang memungkinkan
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Perlihatkan %1 pesan yang didapat dari daftar dengan opsi command-line NYC3 yang memungkinkan&Window
@@ -777,8 +777,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
diff --git a/src/qt/locale/nyc3_id_ID.ts b/src/qt/locale/nyc3_id_ID.ts
index e1d34c31e..ed4377f57 100644
--- a/src/qt/locale/nyc3_id_ID.ts
+++ b/src/qt/locale/nyc3_id_ID.ts
@@ -66,12 +66,12 @@
Alamat-alamat penerima
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Berikut ialah alamat-alamat Bitcoin Anda yang digunakan untuk mengirimkan pembayaran. Selalu periksa jumlah dan alamat penerima sebelum mengirimkan koin.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Berikut ialah alamat-alamat NYC3 Anda yang digunakan untuk mengirimkan pembayaran. Selalu periksa jumlah dan alamat penerima sebelum mengirimkan koin.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Berikut ialah alamat-alamat Bitcoin Anda yang digunakan untuk menerima pembayaran. Dianjurkan untuk menggunakan alamat penerimaan baru untuk setiap transaksi.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Berikut ialah alamat-alamat NYC3 Anda yang digunakan untuk menerima pembayaran. Dianjurkan untuk menggunakan alamat penerimaan baru untuk setiap transaksi.&Copy Address
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Kirim koin ke alamat Bitcoin
+ Kirim koin ke alamat NYC3Backup wallet to another location
@@ -366,8 +366,8 @@
&Verifikasi pesan...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Enkripsi private key yang dimiliki dompet Anda
- Sign messages with your Bitcoin addresses to prove you own them
- Tanda tangani sebuah pesan menggunakan alamat Bitcoin Anda untuk membuktikan bahwa Anda adalah pemilik alamat tersebut
+ Sign messages with your NYC3 addresses to prove you own them
+ Tanda tangani sebuah pesan menggunakan alamat NYC3 Anda untuk membuktikan bahwa Anda adalah pemilik alamat tersebut
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifikasi pesan untuk memastikan bahwa pesan tersebut ditanda tangani oleh suatu alamat Bitcoin tertentu
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifikasi pesan untuk memastikan bahwa pesan tersebut ditanda tangani oleh suatu alamat NYC3 tertentu&File
@@ -434,8 +434,8 @@
&pilihan Command-line
- %n active connection(s) to Bitcoin network
- %n koneksi aktif ke jaringan Bitcoin
+ %n active connection(s) to NYC3 network
+ %n koneksi aktif ke jaringan NYC3Indexing blocks on disk...
@@ -486,8 +486,8 @@
&Address penerima
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Tampilkan %1 pesan bantuan untuk mendapatkan daftar opsi baris perintah Bitcoin yang memungkinkan
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Tampilkan %1 pesan bantuan untuk mendapatkan daftar opsi baris perintah NYC3 yang memungkinkandefault wallet
@@ -590,8 +590,8 @@
Dompet saat ini <b>terenkripsi</b> dan <b>terkunci</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Terjadi Kesalahan Fatal. Bitcoin Tidak Dapat Melanjutkan Dengan Aman Dan Akan Keluar
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Terjadi Kesalahan Fatal. NYC3 Tidak Dapat Melanjutkan Dengan Aman Dan Akan Keluar
@@ -777,7 +777,7 @@
The entered address "%1" is not a valid NYC3 address.
- Alamat yang dimasukkan "%1" bukanlah alamat Bitcoin yang valid.
+ Alamat yang dimasukkan "%1" bukanlah alamat NYC3 yang valid.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -873,8 +873,8 @@
Gunakan direktori pilihan Anda:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -885,8 +885,8 @@
%1 GB data akan disimpan di direktori ini.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 akan mengunduh dan menyimpan salinan Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 akan mengunduh dan menyimpan salinan NYC3 block chain.The wallet will also be stored in this directory.
@@ -917,7 +917,7 @@
Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below.
- Transaksi-transaksi terkini mungkin belum terlihat dan oleh karenanya, saldo dompet Anda mungkin tidak tepat. Informasi ini akan akurat ketika dompet Anda tersinkronisasi dengan jaringan Bitcoin, seperti rincian berikut.
+ Transaksi-transaksi terkini mungkin belum terlihat dan oleh karenanya, saldo dompet Anda mungkin tidak tepat. Informasi ini akan akurat ketika dompet Anda tersinkronisasi dengan jaringan NYC3, seperti rincian berikut.Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network.
@@ -1098,8 +1098,8 @@
&Perubahan saldo untuk transaksi yang belum dikonfirmasi
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Otomatis membuka port client Bitcoin di router. Hanya berjalan apabila router anda mendukung UPnP dan di-enable.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Otomatis membuka port client NYC3 di router. Hanya berjalan apabila router anda mendukung UPnP dan di-enable.Map port using &UPnP
@@ -1114,8 +1114,8 @@
Terima koneksi-koneksi masuk
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Hubungkan ke jaringan Bitcoin melalui SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Hubungkan ke jaringan NYC3 melalui SOCKS5 proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -1150,7 +1150,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.Koneksi ke jaringan bitcoin melalui proxy SOCKS5 yang berbeda untuk layanan Tor tersembunyi.
@@ -1257,8 +1257,8 @@
Formulir
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Informasi terlampir mungkin sudah kedaluwarsa. Dompet Anda secara otomatis mensinkronisasi dengan jaringan Bitcoin ketika sebuah hubungan terbentuk, namun proses ini belum selesai.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Informasi terlampir mungkin sudah kedaluwarsa. Dompet Anda secara otomatis mensinkronisasi dengan jaringan NYC3 ketika sebuah hubungan terbentuk, namun proses ini belum selesai.Watch-only:
@@ -1349,7 +1349,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI tidak bisa dimengerti! Hal ini bisa disebabkan karena alamat Bitcoin yang tidak sah atau parameter URI yang tidak tepat.
+ URI tidak bisa dimengerti! Hal ini bisa disebabkan karena alamat NYC3 yang tidak sah atau parameter URI yang tidak tepat.Payment request file handling
@@ -1391,7 +1391,7 @@
Enter a NYC3 address (e.g. %1)
- Masukkan alamat Bitcoin (contoh %1)
+ Masukkan alamat NYC3 (contoh %1)%1 h
@@ -1922,7 +1922,7 @@
Sign the message to prove you own this NYC3 address
- Tandai pesan untuk menyetujui kamu pemiliki alamat Bitcoin ini
+ Tandai pesan untuk menyetujui kamu pemiliki alamat NYC3 iniSign &Message
diff --git a/src/qt/locale/nyc3_is.ts b/src/qt/locale/nyc3_is.ts
index baa6b9ceb..eeb24e866 100644
--- a/src/qt/locale/nyc3_is.ts
+++ b/src/qt/locale/nyc3_is.ts
@@ -62,12 +62,12 @@
Færslugildi sem þiggja til sín
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Þetta eru Bitcoin færslugildin sem senda greiðslur. Skoðið ævinlega vel upphæðina og færslugildin sem þiggja greiðslur áður en mynt er send.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Þetta eru NYC3 færslugildin sem senda greiðslur. Skoðið ævinlega vel upphæðina og færslugildin sem þiggja greiðslur áður en mynt er send.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Þetta eru Bitcoin færslugildin sem þiggja greiðslur. Mælt er með að nota aldrei sama færslugildið til að þiggja fleiri en eina greiðslu.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Þetta eru NYC3 færslugildin sem þiggja greiðslur. Mælt er með að nota aldrei sama færslugildið til að þiggja fleiri en eina greiðslu.&Copy Address
@@ -323,7 +323,7 @@
Send coins to a NYC3 address
- Senda mynt í Bitcoin færslugildi
+ Senda mynt í NYC3 færslugildiBackup wallet to another location
@@ -346,8 +346,8 @@
&Yfirfara skilaboð...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -370,12 +370,12 @@
Dulkóða einkalyklana sem tilheyra veskinu þínu
- Sign messages with your Bitcoin addresses to prove you own them
- Kvitta undir skilaboð með Bitcoin færslugildunum þínum til að sanna að þú eigir þau
+ Sign messages with your NYC3 addresses to prove you own them
+ Kvitta undir skilaboð með NYC3 færslugildunum þínum til að sanna að þú eigir þau
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Yfirfara skilaboð til að tryggja að kvittað hafi verið fyrir þau með tilteknum Bitcoin færslugildum
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Yfirfara skilaboð til að tryggja að kvittað hafi verið fyrir þau með tilteknum NYC3 færslugildum&File
@@ -446,8 +446,8 @@
Uppfært
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Sýna %1 hjálparskilaboðin til að fá lista yfir valkosti Bitcoin aðgerðir í skipanalínu
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Sýna %1 hjálparskilaboðin til að fá lista yfir valkosti NYC3 aðgerðir í skipanalínu%1 client
@@ -516,8 +516,8 @@
Veskið er <b>dulkóðað</b> and currently <b>locked</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Alvarleg villa átti sér stað. Bitcoin getur ekki haldið áfram með öruggum hætti og stoppar hér.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Alvarleg villa átti sér stað. NYC3 getur ekki haldið áfram með öruggum hætti og stoppar hér.
@@ -631,7 +631,7 @@
The entered address "%1" is not a valid NYC3 address.
- Færslugildið sem slegið var inn "%1" er ekki leyfilegt Bitcoin færslugildi.
+ Færslugildið sem slegið var inn "%1" er ekki leyfilegt NYC3 færslugildi.
@@ -643,8 +643,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
diff --git a/src/qt/locale/nyc3_it.ts b/src/qt/locale/nyc3_it.ts
index 5e5410a0c..a5bcfb623 100644
--- a/src/qt/locale/nyc3_it.ts
+++ b/src/qt/locale/nyc3_it.ts
@@ -66,12 +66,12 @@
Indirizzi di ricezione
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Questi sono i tuoi indirizzi Bitcoin per l'invio di pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare bitcoin.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Questi sono i tuoi indirizzi NYC3 per l'invio di pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare bitcoin.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Questi sono i tuoi indirizzi Bitcoin per la ricezione di pagamenti. Si raccomanda di usare un nuovo indirizzo di ricezione per ogni transazione.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Questi sono i tuoi indirizzi NYC3 per la ricezione di pagamenti. Si raccomanda di usare un nuovo indirizzo di ricezione per ogni transazione.&Copy Address
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Invia fondi ad un indirizzo Bitcoin
+ Invia fondi ad un indirizzo NYC3Backup wallet to another location
@@ -366,8 +366,8 @@
&Verifica messaggio...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Cifra le chiavi private che appartengono al tuo portamonete
- Sign messages with your Bitcoin addresses to prove you own them
- Firma messaggi con i tuoi indirizzi Bitcoin per dimostrarne il possesso
+ Sign messages with your NYC3 addresses to prove you own them
+ Firma messaggi con i tuoi indirizzi NYC3 per dimostrarne il possesso
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifica che i messaggi siano stati firmati con gli indirizzi Bitcoin specificati
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifica che i messaggi siano stati firmati con gli indirizzi NYC3 specificati&File
@@ -434,8 +434,8 @@
Opzioni della riga di &comando
- %n active connection(s) to Bitcoin network
- %n connessione attiva alla rete Bitcoin%n connessioni alla rete Bitcoin attive
+ %n active connection(s) to NYC3 network
+ %n connessione attiva alla rete NYC3%n connessioni alla rete NYC3 attiveIndexing blocks on disk...
@@ -502,8 +502,8 @@
Chiudi il portafoglio
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Mostra il messaggio di aiuto di %1 per ottenere una lista di opzioni di comando per Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Mostra il messaggio di aiuto di %1 per ottenere una lista di opzioni di comando per NYC3 default wallet
@@ -614,8 +614,8 @@
Il portamonete è <b>cifrato</b> ed attualmente <b>bloccato</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Si è verificato un errore critico. Bitcoin non può più funzionare in maniera sicura e verrà chiuso.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Si è verificato un errore critico. NYC3 non può più funzionare in maniera sicura e verrà chiuso.
@@ -901,8 +901,8 @@
Usa una cartella dati personalizzata:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -913,8 +913,8 @@
Verranno salvati circa %1 GB di dati in questa cartella.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 scaricherà e salverà una copia della block chain di Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 scaricherà e salverà una copia della block chain di NYC3.The wallet will also be stored in this directory.
@@ -1131,8 +1131,8 @@ Per specificare più URL separarli con una barra verticale "|".
&Spendi resti non confermati
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Apri automaticamente la porta del client Bitcoin sul router. Il protocollo UPnP deve essere supportato da parte del router ed attivo.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Apri automaticamente la porta del client NYC3 sul router. Il protocollo UPnP deve essere supportato da parte del router ed attivo.Map port using &UPnP
@@ -1147,8 +1147,8 @@ Per specificare più URL separarli con una barra verticale "|".
Accetta connessioni in entrata
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Connessione alla rete Bitcoin attraverso un proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Connessione alla rete NYC3 attraverso un proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1183,8 +1183,8 @@ Per specificare più URL separarli con una barra verticale "|".
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Connette alla rete Bitcoin attraverso un proxy SOCKS5 separato per Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Connette alla rete NYC3 attraverso un proxy SOCKS5 separato per Tor.&Window
@@ -1294,8 +1294,8 @@ Per specificare più URL separarli con una barra verticale "|".
Modulo
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Le informazioni visualizzate potrebbero non essere aggiornate. Il portafoglio si sincronizza automaticamente con la rete Bitcoin una volta stabilita una connessione, ma questo processo non è ancora stato completato.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Le informazioni visualizzate potrebbero non essere aggiornate. Il portafoglio si sincronizza automaticamente con la rete NYC3 una volta stabilita una connessione, ma questo processo non è ancora stato completato.Watch-only:
@@ -1398,7 +1398,7 @@ Per specificare più URL separarli con una barra verticale "|".
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- Impossibile interpretare l'URI! I parametri dell'URI o l'indirizzo Bitcoin potrebbero non essere corretti.
+ Impossibile interpretare l'URI! I parametri dell'URI o l'indirizzo NYC3 potrebbero non essere corretti.Payment request file handling
@@ -1500,7 +1500,7 @@ Per specificare più URL separarli con una barra verticale "|".
Enter a NYC3 address (e.g. %1)
- Inserisci un indirizzo Bitcoin (ad es. %1)
+ Inserisci un indirizzo NYC3 (ad es. %1)%1 d
@@ -1955,8 +1955,8 @@ Per specificare più URL separarli con una barra verticale "|".
&Messaggio:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un messaggio opzionale da allegare e mostrare all'apertura della richiesta di pagamento. Nota: Il messaggio non sarà inviato con il pagamento sulla rete Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un messaggio opzionale da allegare e mostrare all'apertura della richiesta di pagamento. Nota: Il messaggio non sarà inviato con il pagamento sulla rete NYC3.An optional label to associate with the new receiving address.
@@ -2121,7 +2121,7 @@ Per specificare più URL separarli con una barra verticale "|".
SendCoinsDialogSend Coins
- Invia Bitcoin
+ Invia NYC3Coin Control Features
@@ -2385,7 +2385,7 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di "
Warning: Invalid NYC3 address
- Attenzione: Indirizzo Bitcoin non valido
+ Attenzione: Indirizzo NYC3 non validoWarning: Unknown change address
@@ -2428,7 +2428,7 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di "
The NYC3 address to send the payment to
- L'indirizzo Bitcoin a cui vuoi inviare il pagamento
+ L'indirizzo NYC3 a cui vuoi inviare il pagamentoAlt+A
@@ -2475,8 +2475,8 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di "
Inserisci un'etichetta per questo indirizzo per aggiungerlo alla lista degli indirizzi utilizzati
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Messaggio incluso nel bitcoin URI e che sarà memorizzato con la transazione per tuo riferimento. Nota: Questo messaggio non sarà inviato attraverso la rete Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Messaggio incluso nel bitcoin URI e che sarà memorizzato con la transazione per tuo riferimento. Nota: Questo messaggio non sarà inviato attraverso la rete NYC3.Pay To:
@@ -2525,7 +2525,7 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di "
The NYC3 address to sign the message with
- Indirizzo Bitcoin da utilizzare per firmare il messaggio
+ Indirizzo NYC3 da utilizzare per firmare il messaggioChoose previously used address
@@ -2557,7 +2557,7 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di "
Sign the message to prove you own this NYC3 address
- Firma un messaggio per dimostrare di possedere questo indirizzo Bitcoin
+ Firma un messaggio per dimostrare di possedere questo indirizzo NYC3Sign &Message
@@ -2581,7 +2581,7 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di "
The NYC3 address the message was signed with
- L'indirizzo Bitcoin con cui è stato contrassegnato il messaggio
+ L'indirizzo NYC3 con cui è stato contrassegnato il messaggioVerify the message to ensure it was signed with the specified NYC3 address
@@ -3131,7 +3131,7 @@ Nota: poiché la commissione è calcolata su base per byte, una commissione di "
WalletModelSend Coins
- Invia Bitcoin
+ Invia NYC3Fee bump error
diff --git a/src/qt/locale/nyc3_it_IT.ts b/src/qt/locale/nyc3_it_IT.ts
index 702fa81c4..03183c74e 100644
--- a/src/qt/locale/nyc3_it_IT.ts
+++ b/src/qt/locale/nyc3_it_IT.ts
@@ -66,12 +66,12 @@
Indirizzi riceventi
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Questi sono i suoi indirizzi Bitcoin per ricevere i pagamenti. Controlla sempre l'importo e gli indirizzi prima di inviare i coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Questi sono i suoi indirizzi NYC3 per ricevere i pagamenti. Controlla sempre l'importo e gli indirizzi prima di inviare i coins.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Questi sono i tuoi indirizzi Bitcoin per ricevere i pagamenti. Si raccomanda di usare un nuovo indirizzo per ogni transazione.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Questi sono i tuoi indirizzi NYC3 per ricevere i pagamenti. Si raccomanda di usare un nuovo indirizzo per ogni transazione.&Copy Address
@@ -331,7 +331,7 @@
Send coins to a NYC3 address
- Invia monete ad un indirizzo Bitcoin...
+ Invia monete ad un indirizzo NYC3...Backup wallet to another location
@@ -354,8 +354,8 @@
Verifica messaggio...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -378,12 +378,12 @@
Cripta le chiavi private che appartengono al tuo portafoglio
- Sign messages with your Bitcoin addresses to prove you own them
- Firma messaggi con i tuoi indirizzi Bitcoin per provare che li possiedi
+ Sign messages with your NYC3 addresses to prove you own them
+ Firma messaggi con i tuoi indirizzi NYC3 per provare che li possiedi
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifica messaggi per accertarti che siano firmati dagli indirizzi Bitcoin specificati
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifica messaggi per accertarti che siano firmati dagli indirizzi NYC3 specificati&File
@@ -458,8 +458,8 @@
Aggiornato
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Mostra il %1 messaggio d'aiuto per ottenere una lista con le possibili opzioni per la riga di comando di Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Mostra il %1 messaggio d'aiuto per ottenere una lista con le possibili opzioni per la riga di comando di NYC3default wallet
@@ -512,8 +512,8 @@
Generazione di chiavi HD <b>disabilitata</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Si è verificato un errore fatale. Bitcoin non può continuare in maniera sicura e sarà chiuso.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Si è verificato un errore fatale. NYC3 non può continuare in maniera sicura e sarà chiuso.
@@ -687,7 +687,7 @@
The entered address "%1" is not a valid NYC3 address.
- L'indirizzo inserito "%1" non è un indirizzo Bitcoin valido.
+ L'indirizzo inserito "%1" non è un indirizzo NYC3 valido.Could not unlock wallet.
@@ -743,8 +743,8 @@
Benvenuto
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3The wallet will also be stored in this directory.
diff --git a/src/qt/locale/nyc3_ja.ts b/src/qt/locale/nyc3_ja.ts
index 6831cd55e..e12fc5e99 100644
--- a/src/qt/locale/nyc3_ja.ts
+++ b/src/qt/locale/nyc3_ja.ts
@@ -66,12 +66,12 @@
受取用アドレス
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- これらは、あなたが知っている支払い送り先の Bitcoin アドレスです。コインを送る前に、必ず金額と送金先アドレスを確認してください。
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ これらは、あなたが知っている支払い送り先の NYC3 アドレスです。コインを送る前に、必ず金額と送金先アドレスを確認してください。
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- これらは支払いを受け取るための、あなたの Bitcoin アドレスです。トランザクションごとに新しい受け取り用アドレスを作成することが推奨されます。
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ これらは支払いを受け取るための、あなたの NYC3 アドレスです。トランザクションごとに新しい受け取り用アドレスを作成することが推奨されます。&Copy Address
@@ -177,7 +177,7 @@
Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>!
- 警告: もしもあなたのウォレットを暗号化してパスフレーズを忘れてしまったら、<b>あなたの Bitcoin はすべて失われます</b>!
+ 警告: もしもあなたのウォレットを暗号化してパスフレーズを忘れてしまったら、<b>あなたの NYC3 はすべて失われます</b>!Are you sure you wish to encrypt your wallet?
@@ -189,7 +189,7 @@
Your wallet is now encrypted. Remember that encrypting your wallet cannot fully protect your bitcoins from being stolen by malware infecting your computer.
- ウォレットの暗号化処理が完了しました。ウォレットを暗号化しても、コンピュータに感染したマルウェアなどによる Bitcoin の盗難を完全に防ぐことはできないことにご注意ください。
+ ウォレットの暗号化処理が完了しました。ウォレットを暗号化しても、コンピュータに感染したマルウェアなどによる NYC3 の盗難を完全に防ぐことはできないことにご注意ください。IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet.
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Bitcoin アドレスにコインを送る
+ NYC3 アドレスにコインを送るBackup wallet to another location
@@ -366,8 +366,8 @@
メッセージの検証(&V)...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
ウォレットの秘密鍵を暗号化する
- Sign messages with your Bitcoin addresses to prove you own them
- Bitcoin アドレスでメッセージに署名して、アドレスを所有していることを証明する
+ Sign messages with your NYC3 addresses to prove you own them
+ NYC3 アドレスでメッセージに署名して、アドレスを所有していることを証明する
- Verify messages to ensure they were signed with specified Bitcoin addresses
- メッセージを検証して、指定された Bitcoin アドレスで署名されたことを確認する
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ メッセージを検証して、指定された NYC3 アドレスで署名されたことを確認する&File
@@ -434,8 +434,8 @@
コマンドラインオプション(&C)
- %n active connection(s) to Bitcoin network
- Bitcoin ネットワークへのアクティブな接続は %n 個
+ %n active connection(s) to NYC3 network
+ NYC3 ネットワークへのアクティブな接続は %n 個Indexing blocks on disk...
@@ -502,7 +502,7 @@
ウォレットを閉じる
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line options%1 のヘルプ メッセージを表示して、使用可能な XPChain のコマンドライン オプションの一覧を見る。
@@ -614,8 +614,8 @@
ウォレットは<b>暗号化済み</b>・<b>ロック状態</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- 致命的なエラーが発生しました。Bitcoin を安全に動作し続けることができないため終了します。
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ 致命的なエラーが発生しました。NYC3 を安全に動作し続けることができないため終了します。
@@ -805,7 +805,7 @@
The entered address "%1" is not a valid NYC3 address.
- 入力されたアドレス "%1" は無効な Bitcoin アドレスです。
+ 入力されたアドレス "%1" は無効な NYC3 アドレスです。Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -901,8 +901,8 @@
カスタム データ ディレクトリを使用:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -913,8 +913,8 @@
約%1 GBのデータがこのディレクトリに保存されます。
- %1 will download and store a copy of the Bitcoin block chain.
- %1 は Bitcoin ブロックチェーンのコピーをダウンロードし保存します。
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 は NYC3 ブロックチェーンのコピーをダウンロードし保存します。The wallet will also be stored in this directory.
@@ -945,11 +945,11 @@
Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below.
- 最近の取引がまだ表示されていない可能性があります。そのため、ウォレットの残高が正しく表示されていないかもしれません。この情報は、ウォレットが Bitcoin ネットワークへの同期が完了すると正確なものとなります。詳細は下記を参照してください。
+ 最近の取引がまだ表示されていない可能性があります。そのため、ウォレットの残高が正しく表示されていないかもしれません。この情報は、ウォレットが NYC3 ネットワークへの同期が完了すると正確なものとなります。詳細は下記を参照してください。Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network.
- まだ表示されていない取引が関係する Bitcoin を使用しようとすると、ネットワークから認証を受けられません。
+ まだ表示されていない取引が関係する NYC3 を使用しようとすると、ネットワークから認証を受けられません。Number of blocks left
@@ -1126,8 +1126,8 @@
未検証のお釣りを使用する(&S)
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- 自動的にルーター上の Bitcoin クライアントのポートを開放します。あなたのルーターが UPnP に対応していて、それが有効になっている場合のみ動作します。
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ 自動的にルーター上の NYC3 クライアントのポートを開放します。あなたのルーターが UPnP に対応していて、それが有効になっている場合のみ動作します。Map port using &UPnP
@@ -1142,8 +1142,8 @@
外部からの接続を許可する(&G)
- Connect to the Bitcoin network through a SOCKS5 proxy.
- SOCKS5 プロキシ経由で Bitcoin ネットワークに接続する。
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ SOCKS5 プロキシ経由で NYC3 ネットワークに接続する。&Connect through SOCKS5 proxy (default proxy):
@@ -1178,8 +1178,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Tor秘匿サービスを利用するため、専用の SOCKS5 プロキシ経由で Bitcoin ネットワークに接続する。
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Tor秘匿サービスを利用するため、専用の SOCKS5 プロキシ経由で NYC3 ネットワークに接続する。&Window
@@ -1289,8 +1289,8 @@
フォーム
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- 表示されている情報は古い可能性があります。ウォレットは接続確立後に Bitcoin ネットワークと自動的に同期しますが、同期処理はまだ完了していません。
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ 表示されている情報は古い可能性があります。ウォレットは接続確立後に NYC3 ネットワークと自動的に同期しますが、同期処理はまだ完了していません。Watch-only:
@@ -1365,7 +1365,7 @@
Cannot start bitcoin: click-to-pay handler
- Bitcoin を起動できません: click-to-pay handler
+ NYC3 を起動できません: click-to-pay handlerURI handling
@@ -1393,7 +1393,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URIを解析できませんでした! Bitcoin アドレスが無効であるか、URIパラメーターが不正な形式である可能性があります。
+ URIを解析できませんでした! NYC3 アドレスが無効であるか、URIパラメーターが不正な形式である可能性があります。Payment request file handling
@@ -1495,7 +1495,7 @@
Enter a NYC3 address (e.g. %1)
- Bitcoin アドレスを入力してください (例: %1)
+ NYC3 アドレスを入力してください (例: %1)%1 d
@@ -1950,8 +1950,8 @@
メッセージ (&M):
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- 支払いリクエストに添付するメッセージ(任意)。支払リクエスト開始時に表示されます。注意: メッセージは Bitcoin ネットワーク上へ送信されません。
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ 支払いリクエストに添付するメッセージ(任意)。支払リクエスト開始時に表示されます。注意: メッセージは NYC3 ネットワーク上へ送信されません。An optional label to associate with the new receiving address.
@@ -2380,7 +2380,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Warning: Invalid NYC3 address
- 警告: 無効な Bitcoin アドレス
+ 警告: 無効な NYC3 アドレスWarning: Unknown change address
@@ -2423,7 +2423,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address to send the payment to
- 支払い先 Bitcoin アドレス
+ 支払い先 NYC3 アドレスAlt+A
@@ -2443,7 +2443,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The fee will be deducted from the amount being sent. The recipient will receive less bitcoins than you enter in the amount field. If multiple recipients are selected, the fee is split equally.
- 手数料は送金する金額から差し引かれます。送金先には金額欄で指定した額よりも少ない Bitcoin が送られます。送金先が複数ある場合は、手数料は均等に分けられます。
+ 手数料は送金する金額から差し引かれます。送金先には金額欄で指定した額よりも少ない NYC3 が送られます。送金先が複数ある場合は、手数料は均等に分けられます。S&ubtract fee from amount
@@ -2470,8 +2470,8 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
このアドレスに対するラベルを入力することで、送金したことがあるアドレスの一覧に追加することができます
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- bitcoin: URIに添付されていたメッセージです。これは参照用として取引とともに保存されます。注意: メッセージは Bitcoin ネットワーク上へ送信されません。
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ bitcoin: URIに添付されていたメッセージです。これは参照用として取引とともに保存されます。注意: メッセージは NYC3 ネットワーク上へ送信されません。Pay To:
@@ -2516,11 +2516,11 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
You can sign messages/agreements with your addresses to prove you can receive bitcoins sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to.
- あなたが所有しているアドレスでメッセージや契約書に署名をすることで、それらのアドレスへ送られた Bitcoin を受け取ることができることを証明できます。フィッシング攻撃者があなたを騙して、あなたの身分情報に署名させようとしている可能性があるため、よくわからないものやランダムな文字列に対して署名しないでください。あなたが同意した、よく詳細の記された文言にのみ署名するようにしてください。
+ あなたが所有しているアドレスでメッセージや契約書に署名をすることで、それらのアドレスへ送られた NYC3 を受け取ることができることを証明できます。フィッシング攻撃者があなたを騙して、あなたの身分情報に署名させようとしている可能性があるため、よくわからないものやランダムな文字列に対して署名しないでください。あなたが同意した、よく詳細の記された文言にのみ署名するようにしてください。The NYC3 address to sign the message with
- メッセージの署名に使用する Bitcoin アドレス
+ メッセージの署名に使用する NYC3 アドレスChoose previously used address
@@ -2552,7 +2552,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Sign the message to prove you own this NYC3 address
- メッセージに署名してこの Bitcoin アドレスを所有していることを証明
+ メッセージに署名してこの NYC3 アドレスを所有していることを証明Sign &Message
@@ -2576,11 +2576,11 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address the message was signed with
- メッセージの署名に使われた Bitcoin アドレス
+ メッセージの署名に使われた NYC3 アドレスVerify the message to ensure it was signed with the specified NYC3 address
- メッセージを検証して指定された Bitcoin アドレスで署名されたことを確認
+ メッセージを検証して指定された NYC3 アドレスで署名されたことを確認Verify &Message
@@ -3248,7 +3248,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
NYC3
- Bitcoin コア
+ NYC3 コアThe %s developers
diff --git a/src/qt/locale/nyc3_ka.ts b/src/qt/locale/nyc3_ka.ts
index 845670fe1..68b10ec98 100644
--- a/src/qt/locale/nyc3_ka.ts
+++ b/src/qt/locale/nyc3_ka.ts
@@ -66,11 +66,11 @@
მიმღები მისამართი
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.ეს არის თქვენი ბიტკოინ-მისამართები, რომელთაგანაც შეგიძლიათ გადახდა. აუცილებლად შეამოწმეთ თანხა და მიმღები მისამართი გაგზავნამდე.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.ეს არის თქვენი ბიტკოინ-მისამართები, რომლებზეც შეგიძლიათ მიიღოთ თანხები. რეკომენდებულია ყოველი ტრანსაქციისათვის ახალი მიმღები მისამართის გამოყენება.
@@ -311,7 +311,7 @@
Send coins to a NYC3 address
- მონეტების გაგზავნა Bitcoin-მისამართზე
+ მონეტების გაგზავნა NYC3-მისამართზეBackup wallet to another location
@@ -334,8 +334,8 @@
&ვერიფიკაცია
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -358,12 +358,12 @@
თქვენი საფულის პირადი გასაღებების დაშიფრვა
- Sign messages with your Bitcoin addresses to prove you own them
- მესიჯებზე ხელმოწერა თქვენი Bitcoin-მისამართებით იმის დასტურად, რომ ის თქვენია
+ Sign messages with your NYC3 addresses to prove you own them
+ მესიჯებზე ხელმოწერა თქვენი NYC3-მისამართებით იმის დასტურად, რომ ის თქვენია
- Verify messages to ensure they were signed with specified Bitcoin addresses
- შეამოწმეთ, რომ მესიჯები ხელმოწერილია მითითებული Bitcoin-მისამართით
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ შეამოწმეთ, რომ მესიჯები ხელმოწერილია მითითებული NYC3-მისამართით&File
@@ -677,8 +677,8 @@
მითითებული კატალოგის გამოყენება:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -778,8 +778,8 @@
დაუდასტურებელი ხურდის გამოყენების აკრძალვის შემდეგ მათი გამოყენება შეუძლებელი იქნება, სანამ ტრანსაქციას არ ექნება ერთი დასტური მაინც. ეს აისახება თქვენი ნაშთის დათვლაზეც.
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- როუტერში Bitcoin-კლიენტის პორტის ავტომატური გახსნა. მუშაობს, თუ თქვენს როუტერს ჩართული აქვს UPnP.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ როუტერში NYC3-კლიენტის პორტის ავტომატური გახსნა. მუშაობს, თუ თქვენს როუტერს ჩართული აქვს UPnP.Map port using &UPnP
@@ -889,8 +889,8 @@
ფორმა
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- ნაჩვენები ინფორმაცია შეიძლება მოძველებული იყოს. თქვენი საფულე ავტომატურად სინქრონიზდება Bitcoin-ის ქსელთან კავშირის დამყარების შემდეგ, ეს პროცესი ჯერ არ არის დასრულებული.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ ნაჩვენები ინფორმაცია შეიძლება მოძველებული იყოს. თქვენი საფულე ავტომატურად სინქრონიზდება NYC3-ის ქსელთან კავშირის დამყარების შემდეგ, ეს პროცესი ჯერ არ არის დასრულებული.Available:
@@ -1078,7 +1078,7 @@
&მესიჯი:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.არააუცილებელი მესიჯი, რომელიც ერთვის გადახდის მოთხოვნას და ნაჩვენები იქნება მოთხოვნის გახსნისას. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში.
@@ -1330,7 +1330,7 @@
შეიყვანეთ ამ მისამართის ნიშნული გამოყენებული მისამართების სიაში დასამატებლად
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.მესიჯი, რომელიც თან ერთვის მონეტებს: URI, რომელიც შეინახება ტრანსაქციასთან ერთად თქვენთვის. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში.
@@ -1412,7 +1412,7 @@
Verify the message to ensure it was signed with the specified NYC3 address
- შეამოწმეთ, რომ მესიჯი ხელმოწერილია მითითებული Bitcoin-მისამართით
+ შეამოწმეთ, რომ მესიჯი ხელმოწერილია მითითებული NYC3-მისამართითVerify &Message
diff --git a/src/qt/locale/nyc3_kk_KZ.ts b/src/qt/locale/nyc3_kk_KZ.ts
index 0ba02518b..f0c1483f0 100644
--- a/src/qt/locale/nyc3_kk_KZ.ts
+++ b/src/qt/locale/nyc3_kk_KZ.ts
@@ -70,7 +70,7 @@
Құпия сөзді өзгерту
- Bitcoin
+ NYC3Биткоин
@@ -165,7 +165,7 @@
Intro
- Bitcoin
+ NYC3Биткоин
diff --git a/src/qt/locale/nyc3_ko.ts b/src/qt/locale/nyc3_ko.ts
index 80d1dfc31..ee27c6ba5 100644
--- a/src/qt/locale/nyc3_ko.ts
+++ b/src/qt/locale/nyc3_ko.ts
@@ -66,11 +66,11 @@
받을 주소
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.이것은 비트코인 전송을 위한 주소입니다. 코인을 보내기 전에 항상 받는 주소와 수량을 확인하세요
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.이것은 비트코인 수신을 위한 주소입니다. 코인을 받을 때 마다 항상 다른 주소를 사용 하시는 것을 권장합니다.
diff --git a/src/qt/locale/nyc3_ko_KR.ts b/src/qt/locale/nyc3_ko_KR.ts
index bf0a733fa..b8f500b68 100644
--- a/src/qt/locale/nyc3_ko_KR.ts
+++ b/src/qt/locale/nyc3_ko_KR.ts
@@ -66,11 +66,11 @@
받는 주소들
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.비트코인을 보내는 계좌 주소입니다. 코인을 보내기 전에 금액과 받는 주소를 항상 확인하세요.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.비트코인을 받을 수 있는 계좌 주소입니다. 매 거래마다 새로운 주소 사용을 권장합니다.
@@ -366,7 +366,7 @@
메시지 검증(&V)...
- Bitcoin
+ NYC3비트코인
@@ -390,11 +390,11 @@
지갑에 포함된 개인키 암호화하기
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own them지갑 주소가 본인 소유인지 증명하기 위해 메시지를 서명합니다
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addresses해당 비트코인 주소로 서명되었는지 확인하기 위해 메시지를 검증합니다
@@ -434,7 +434,7 @@
명령줄 옵션(&C)
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network비트코인 네트워크에 %n개의 연결 활성화됨
@@ -502,7 +502,7 @@
지갑 닫기
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line options사용할 수 있는 비트코인 명령줄 옵션 목록을 가져오기 위해 %1 도움말 메시지를 표시합니다
@@ -614,7 +614,7 @@
지갑이 <b>암호화</b> 되었고 현재 <b>잠겨져</b> 있습니다
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.치명적인 오류가 발생했습니다. 비트코인을 더이상 안전하게 진행할 수 없어 곧 종료합니다.
@@ -901,7 +901,7 @@
커스텀 데이터 폴더 사용:
- Bitcoin
+ NYC3비트코인
@@ -913,7 +913,7 @@
약 %1 GB의 데이터가 이 디렉토리에 저장됩니다.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1은 비트코인 블록체인의 사본을 다운로드하여 저장합니다.
@@ -1130,7 +1130,7 @@
검증되지 않은 잔돈 쓰기 (&S)
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.라우터에서 비트코인 클라이언트 포트를 자동적으로 엽니다. 라우터에서 UPnP를 지원하고 활성화 했을 경우에만 동작합니다.
@@ -1146,7 +1146,7 @@
연결 요청을 허용 (&G)
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.SOCKS5 프록시를 통해 비트코인 네트워크에 연결합니다.
@@ -1182,7 +1182,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.Tor 서비스를 경유하여 비트코인 네트워크에 연결하기 위해 분리된 SOCKS5 프록시를 사용합니다.
@@ -1293,7 +1293,7 @@
유형
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.표시된 정보가 오래된 것 같습니다. 비트코인 네트워크에 연결하고 난 다음에 지갑을 자동으로 동기화 하지만, 아직 과정이 끝나지는 않았습니다.
@@ -1954,7 +1954,7 @@
메시지(&M):
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.지불 요청에 첨부되는 선택가능한 메시지 입니다. 이 메세지는 요청이 열릴 때 표시될 것 입니다. 메모: 이 메시지는 비트코인 네트워크로 전송되지 않습니다.
@@ -2474,7 +2474,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
이 주소에 라벨을 입력하면 사용된 주소 목록에 라벨이 표시됩니다
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.bitcoin: URI에 추가된 메시지는 참고를 위해 거래내역과 함께 저장될 것입니다. Note: 이 메시지는 비트코인 네트워크로 전송되지 않습니다.
diff --git a/src/qt/locale/nyc3_ky.ts b/src/qt/locale/nyc3_ky.ts
index 040324c28..d5742e903 100644
--- a/src/qt/locale/nyc3_ky.ts
+++ b/src/qt/locale/nyc3_ky.ts
@@ -38,8 +38,8 @@
Билдирүүнү &текшерүү...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&File
@@ -101,8 +101,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
diff --git a/src/qt/locale/nyc3_la.ts b/src/qt/locale/nyc3_la.ts
index 81f0cd58e..bf7fa5dcb 100644
--- a/src/qt/locale/nyc3_la.ts
+++ b/src/qt/locale/nyc3_la.ts
@@ -119,7 +119,7 @@
Send coins to a NYC3 address
- Mitte nummos ad inscriptionem Bitcoin
+ Mitte nummos ad inscriptionem NYC3Backup wallet to another location
@@ -142,8 +142,8 @@
&Verifica nuntium...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -166,12 +166,12 @@
Cifra claves privatas quae cassidili tui sunt
- Sign messages with your Bitcoin addresses to prove you own them
- Signa nuntios cum tuis inscriptionibus Bitcoin ut demonstres te eas possidere
+ Sign messages with your NYC3 addresses to prove you own them
+ Signa nuntios cum tuis inscriptionibus NYC3 ut demonstres te eas possidere
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifica nuntios ut certus sis eos signatos esse cum specificatis inscriptionibus Bitcoin
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifica nuntios ut certus sis eos signatos esse cum specificatis inscriptionibus NYC3&File
@@ -297,8 +297,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -346,8 +346,8 @@
Cassidile
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Aperi per se portam clientis Bitcoin in itineratore. Hoc tantum effectivum est si itineratrum tuum supportat UPnP et id activum est.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Aperi per se portam clientis NYC3 in itineratore. Hoc tantum effectivum est si itineratrum tuum supportat UPnP et id activum est.Map port using &UPnP
@@ -429,8 +429,8 @@
Schema
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Monstrata informatio fortasse non recentissima est. Tuum cassidile per se synchronizat cum rete Bitcoin postquam conexio constabilita est, sed hoc actio nondum perfecta est.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Monstrata informatio fortasse non recentissima est. Tuum cassidile per se synchronizat cum rete NYC3 postquam conexio constabilita est, sed hoc actio nondum perfecta est.Immature:
@@ -680,7 +680,7 @@
Sign the message to prove you own this NYC3 address
- Signa nuntium ut demonstres hanc inscriptionem Bitcoin a te possessa esse
+ Signa nuntium ut demonstres hanc inscriptionem NYC3 a te possessa esseSign &Message
@@ -700,7 +700,7 @@
Verify the message to ensure it was signed with the specified NYC3 address
- Verifica nuntium ut cures signatum esse cum specifica inscriptione Bitcoin
+ Verifica nuntium ut cures signatum esse cum specifica inscriptione NYC3Verify &Message
@@ -756,7 +756,7 @@
bitcoin-coreNYC3
- Bitcoin Nucleus
+ NYC3 NucleusCorrupted block database detected
diff --git a/src/qt/locale/nyc3_lt.ts b/src/qt/locale/nyc3_lt.ts
index c26b80a1d..510e32d34 100644
--- a/src/qt/locale/nyc3_lt.ts
+++ b/src/qt/locale/nyc3_lt.ts
@@ -66,12 +66,12 @@
Gavimo adresai
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Tai yra jūsų Bitcoin adresai išeinantiems mokėjimams. Visada pasitikrinkite sumą ir gavėjo adresą prieš siunčiant lėšas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Tai yra jūsų NYC3 adresai išeinantiems mokėjimams. Visada pasitikrinkite sumą ir gavėjo adresą prieš siunčiant lėšas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Tai yra Jūsų Bitcoin adresai įeinantiems mokėjimams. Kiekvienam mokėjimui rekomenduojama naudoti naują adresą.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Tai yra Jūsų NYC3 adresai įeinantiems mokėjimams. Kiekvienam mokėjimui rekomenduojama naudoti naują adresą. &Copy Address
@@ -331,7 +331,7 @@
Send coins to a NYC3 address
- Siųsti monetas Bitcoin adresui
+ Siųsti monetas NYC3 adresuiBackup wallet to another location
@@ -354,8 +354,8 @@
&Tikrinti žinutę...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -378,12 +378,12 @@
Užšifruoti privačius raktus, kurie priklauso jūsų piniginei
- Sign messages with your Bitcoin addresses to prove you own them
- Pasirašydami žinutes su savo Bitcoin adresais įrodysite jog esate jų savininkas
+ Sign messages with your NYC3 addresses to prove you own them
+ Pasirašydami žinutes su savo NYC3 adresais įrodysite jog esate jų savininkas
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas Bitcoin adresas
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas NYC3 adresas&File
@@ -645,8 +645,8 @@
Sveiki
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3The wallet will also be stored in this directory.
@@ -698,8 +698,8 @@
Piniginė
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Automatiškai atidaryti Bitcoin kliento prievadą maršrutizatoriuje. Tai veikia tik tada, kai jūsų maršrutizatorius palaiko UPnP ir ji įjungta.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatiškai atidaryti NYC3 kliento prievadą maršrutizatoriuje. Tai veikia tik tada, kai jūsų maršrutizatorius palaiko UPnP ir ji įjungta.Map port using &UPnP
@@ -1208,7 +1208,7 @@
Verify the message to ensure it was signed with the specified NYC3 address
- Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas Bitcoin adresas
+ Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas NYC3 adresasVerify &Message
@@ -1308,7 +1308,7 @@
bitcoin-coreNYC3
- Bitcoin branduolys
+ NYC3 branduolysError opening block database
diff --git a/src/qt/locale/nyc3_lv_LV.ts b/src/qt/locale/nyc3_lv_LV.ts
index 80aa35169..39104d710 100644
--- a/src/qt/locale/nyc3_lv_LV.ts
+++ b/src/qt/locale/nyc3_lv_LV.ts
@@ -203,7 +203,7 @@
Send coins to a NYC3 address
- Nosūtīt bitkoinus uz Bitcoin adresi
+ Nosūtīt bitkoinus uz NYC3 adresiBackup wallet to another location
@@ -226,8 +226,8 @@
&Pārbaudīt ziņojumu...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -250,12 +250,12 @@
Šifrēt privātās atslēgas kuras pieder tavam maciņam
- Sign messages with your Bitcoin addresses to prove you own them
- Parakstīt ziņojumus ar savām Bitcoin adresēm lai pierādītu ka tās pieder tev
+ Sign messages with your NYC3 addresses to prove you own them
+ Parakstīt ziņojumus ar savām NYC3 adresēm lai pierādītu ka tās pieder tev
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Pārbaudīt ziņojumus lai pārliecinātos, ka tie tika parakstīti ar norādītajām Bitcoin adresēm
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Pārbaudīt ziņojumus lai pārliecinātos, ka tie tika parakstīti ar norādītajām NYC3 adresēm&File
@@ -457,8 +457,8 @@
Izmantot pielāgotu datu mapi:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -550,8 +550,8 @@
&Tērēt neapstiprinātu atlikumu
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Uz rūtera automātiski atvērt Bitcoin klienta portu. Tas strādā tikai tad, ja rūteris atbalsta UPnP un tas ir ieslēgts.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Uz rūtera automātiski atvērt NYC3 klienta portu. Tas strādā tikai tad, ja rūteris atbalsta UPnP un tas ir ieslēgts.Map port using &UPnP
@@ -603,7 +603,7 @@
Whether to show coin control features or not.
- Vai rādīt Bitcoin kontroles funkcijas vai nē.
+ Vai rādīt NYC3 kontroles funkcijas vai nē.&OK
@@ -641,8 +641,8 @@
Forma
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Attēlotā informācija var būt novecojusi. Jūsu maciņš pēc savienojuma izveides automātiski sinhronizējas ar Bitcoin tīklu, taču šis process vēl nav beidzies.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Attēlotā informācija var būt novecojusi. Jūsu maciņš pēc savienojuma izveides automātiski sinhronizējas ar NYC3 tīklu, taču šis process vēl nav beidzies.Available:
@@ -908,7 +908,7 @@
Coin Control Features
- Bitcoin Kontroles Funkcijas
+ NYC3 Kontroles FunkcijasInputs...
@@ -1092,7 +1092,7 @@
Sign the message to prove you own this NYC3 address
- Parakstīt ziņojumu lai pierādītu, ka esi šīs Bitcoin adreses īpašnieks.
+ Parakstīt ziņojumu lai pierādītu, ka esi šīs NYC3 adreses īpašnieks.Sign &Message
diff --git a/src/qt/locale/nyc3_mk_MK.ts b/src/qt/locale/nyc3_mk_MK.ts
index 80022c407..859510452 100644
--- a/src/qt/locale/nyc3_mk_MK.ts
+++ b/src/qt/locale/nyc3_mk_MK.ts
@@ -134,7 +134,7 @@
&Потврди порака...
- Bitcoin
+ NYC3Биткоин
@@ -287,7 +287,7 @@
Intro
- Bitcoin
+ NYC3Биткоин
diff --git a/src/qt/locale/nyc3_ml.ts b/src/qt/locale/nyc3_ml.ts
index 3e34b8b36..fc9eee9a4 100644
--- a/src/qt/locale/nyc3_ml.ts
+++ b/src/qt/locale/nyc3_ml.ts
@@ -63,11 +63,11 @@
സ്വീകരിക്കുന്ന വിലാസങ്ങൾ
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.പേയ്മെന്റുകൾ അയയ്ക്കുന്നതിനുള്ള നിങ്ങളുടെ ബിറ്റ്കോയിൻ വിലാസങ്ങളാണ് ഇവ. നാണയങ്ങൾ അയയ്ക്കുന്നതിനുമുമ്പ് എല്ലായ്പ്പോഴും തുകയും സ്വീകരിക്കുന്ന വിലാസവും പരിശോധിക്കുക.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.പേയ്മെന്റ് സ്വീകരിക്കുന്നതിന് നിങ്ങളുടെ ബിറ്റ്കോയിൻ വിലാസങ്ങളാണ് ഇവ. ഓരോ ഇടപാടിനും പുതിയ സ്വീകരിക്കുന്ന വിലാസം ഉപയോഗിക്കുന്നതാണ് ഉചിതം.
diff --git a/src/qt/locale/nyc3_mn.ts b/src/qt/locale/nyc3_mn.ts
index 04d941c33..3a3aaca4a 100644
--- a/src/qt/locale/nyc3_mn.ts
+++ b/src/qt/locale/nyc3_mn.ts
@@ -122,7 +122,7 @@
Оношилгоо ба засварын консолыг онгойлго
- Bitcoin
+ NYC3Биткойн
@@ -221,7 +221,7 @@
Intro
- Bitcoin
+ NYC3Биткойн
diff --git a/src/qt/locale/nyc3_ms_MY.ts b/src/qt/locale/nyc3_ms_MY.ts
index 27716e95d..28349d92c 100644
--- a/src/qt/locale/nyc3_ms_MY.ts
+++ b/src/qt/locale/nyc3_ms_MY.ts
@@ -68,12 +68,12 @@ Alihkan fail data ke dalam tab semasa
alamat-alamat penerimaan
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Ini adalah alamat Bitcoin anda untuk pembayaran. Periksa jumlah dan alamat penerima sebelum membuat penghantaran koin sentiasa.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Ini adalah alamat NYC3 anda untuk pembayaran. Periksa jumlah dan alamat penerima sebelum membuat penghantaran koin sentiasa.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Ini adalah alamat Bitcoin anda untuk menerima pembayaraan. Anda disyorkan untuk menguna alamat menerima untuk setiap transaksi.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Ini adalah alamat NYC3 anda untuk menerima pembayaraan. Anda disyorkan untuk menguna alamat menerima untuk setiap transaksi.&Copy Address
@@ -338,7 +338,7 @@ Alihkan fail data ke dalam tab semasa
Send coins to a NYC3 address
- Menghantar koin kepada alamat Bitcoin
+ Menghantar koin kepada alamat NYC3Backup wallet to another location
@@ -361,8 +361,8 @@ Alihkan fail data ke dalam tab semasa
sahkan mesej
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -385,12 +385,12 @@ Alihkan fail data ke dalam tab semasa
sulitkan kata laluan milik peribadi anda
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themsahkan mesej bersama alamat bitcoin anda untuk menunjukkan alamat ini anda punya
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Sahkan mesej untuk memastikan mereka telah ditandatangani dengan alamat Bitcoin yang ditentukan
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Sahkan mesej untuk memastikan mereka telah ditandatangani dengan alamat NYC3 yang ditentukan&File
@@ -484,8 +484,8 @@ Alihkan fail data ke dalam tab semasa
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
diff --git a/src/qt/locale/nyc3_nb.ts b/src/qt/locale/nyc3_nb.ts
index 1f7678ea0..60cae4861 100644
--- a/src/qt/locale/nyc3_nb.ts
+++ b/src/qt/locale/nyc3_nb.ts
@@ -66,12 +66,12 @@
Mottaksadresser
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Dette er dine Bitcoin-adresser for sending av betalinger. Sjekk alltid beløpet og mottakeradressen før sending av mynter.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Dette er dine NYC3-adresser for sending av betalinger. Sjekk alltid beløpet og mottakeradressen før sending av mynter.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Dette er dine Bitcoin-adresser for å sende betalinger med. Det er anbefalt å bruke en ny mottaksadresse for hver transaksjon.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Dette er dine NYC3-adresser for å sende betalinger med. Det er anbefalt å bruke en ny mottaksadresse for hver transaksjon.&Copy Address
@@ -331,7 +331,7 @@
Send coins to a NYC3 address
- Send til en Bitcoin-adresse
+ Send til en NYC3-adresseBackup wallet to another location
@@ -354,8 +354,8 @@
&Verifiser melding...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -378,12 +378,12 @@
Krypter de private nøklene som tilhører lommeboken din
- Sign messages with your Bitcoin addresses to prove you own them
- Signer en melding med Bitcoin-adressene dine for å bevise at du eier dem
+ Sign messages with your NYC3 addresses to prove you own them
+ Signer en melding med NYC3-adressene dine for å bevise at du eier dem
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Bekreft meldinger for å være sikker på at de ble signert av en angitt Bitcoin-adresse
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Bekreft meldinger for å være sikker på at de ble signert av en angitt NYC3-adresse&File
@@ -415,15 +415,15 @@
Open a bitcoin: URI or payment request
- Åpne en Bitcoin: URI eller betalingsetterspørring
+ Åpne en NYC3: URI eller betalingsetterspørring&Command-line options&Kommandolinjevalg
- %n active connection(s) to Bitcoin network
- %n aktiv forbindelse til Bitcoin-nettverket%n aktive forbindelser til Bitcoin-nettverket
+ %n active connection(s) to NYC3 network
+ %n aktiv forbindelse til NYC3-nettverket%n aktive forbindelser til NYC3-nettverketIndexing blocks on disk...
@@ -466,8 +466,8 @@
Oppdatert
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Vis %1 hjelpemeldingen for å få en liste med mulige Bitcoin kommandolinjevalg.
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Vis %1 hjelpemeldingen for å få en liste med mulige NYC3 kommandolinjevalg.&Window
@@ -544,8 +544,8 @@
Lommeboken er <b>kryptert</b> og for tiden <b>låst</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- En fatal feil har inntruffet. Bitcoin kan ikke lenger trygt fortsette, og må derfor avslutte.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ En fatal feil har inntruffet. NYC3 kan ikke lenger trygt fortsette, og må derfor avslutte.
@@ -735,7 +735,7 @@
The entered address "%1" is not a valid NYC3 address.
- Den angitte adressen "%1" er ikke en gyldig Bitcoin-adresse.
+ Den angitte adressen "%1" er ikke en gyldig NYC3-adresse.Could not unlock wallet.
@@ -823,8 +823,8 @@
Bruk en egendefinert datamappe:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -835,8 +835,8 @@
Omtrent %1GB data vil bli lagret i denne mappen.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 vil laste ned og lagre en kopi av Bitcoin blokkjeden.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 vil laste ned og lagre en kopi av NYC3 blokkjeden.The wallet will also be stored in this directory.
@@ -1028,8 +1028,8 @@
&Bruk ubekreftet veksel
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Åpne automatisk Bitcoin klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Åpne automatisk NYC3 klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått.Map port using &UPnP
@@ -1044,8 +1044,8 @@
Tillatt innkommend&e tilkoblinger
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Koble til Bitcoin-nettverket gjennom en SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Koble til NYC3-nettverket gjennom en SOCKS5 proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -1080,8 +1080,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Koble til Bitcoin-nettverket gjennom en separat SOCKS5 mellomtjener for Tor skjulte tjenester.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Koble til NYC3-nettverket gjennom en separat SOCKS5 mellomtjener for Tor skjulte tjenester.&Window
@@ -1187,8 +1187,8 @@
Skjema
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Informasjonen som vises kan være foreldet. Din lommebok synkroniseres automatisk med Bitcoin-nettverket etter at tilkobling er opprettet, men denne prosessen er ikke ferdig enda.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Informasjonen som vises kan være foreldet. Din lommebok synkroniseres automatisk med NYC3-nettverket etter at tilkobling er opprettet, men denne prosessen er ikke ferdig enda.Watch-only:
@@ -1381,7 +1381,7 @@
Enter a NYC3 address (e.g. %1)
- Oppgi en Bitcoin-adresse (f.eks. %1)
+ Oppgi en NYC3-adresse (f.eks. %1)%1 d
@@ -1800,8 +1800,8 @@
&Melding:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- En valgfri melding å tilknytte betalingsetterspørringen, som vil bli vist når forespørselen er åpnet. Meldingen vil ikke bli sendt med betalingen over Bitcoin-nettverket.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ En valgfri melding å tilknytte betalingsetterspørringen, som vil bli vist når forespørselen er åpnet. Meldingen vil ikke bli sendt med betalingen over NYC3-nettverket.An optional label to associate with the new receiving address.
@@ -2237,7 +2237,7 @@
The NYC3 address to send the payment to
- Bitcoin-adressen betalingen skal sendes til
+ NYC3-adressen betalingen skal sendes tilAlt+A
@@ -2284,8 +2284,8 @@
Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- En melding som var tilknyttet bitcoinen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over Bitcoin-nettverket.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ En melding som var tilknyttet bitcoinen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over NYC3-nettverket.Pay To:
@@ -2334,7 +2334,7 @@
The NYC3 address to sign the message with
- Bitcoin-adressen meldingen skal signeres med
+ NYC3-adressen meldingen skal signeres medChoose previously used address
@@ -2366,7 +2366,7 @@
Sign the message to prove you own this NYC3 address
- Signer meldingen for å bevise at du eier denne Bitcoin-adressen
+ Signer meldingen for å bevise at du eier denne NYC3-adressenSign &Message
@@ -2390,11 +2390,11 @@
The NYC3 address the message was signed with
- Bitcoin-adressen meldingen ble signert med
+ NYC3-adressen meldingen ble signert medVerify the message to ensure it was signed with the specified NYC3 address
- Verifiser meldingen for å være sikker på at den ble signert av den angitte Bitcoin-adressen
+ Verifiser meldingen for å være sikker på at den ble signert av den angitte NYC3-adressenVerify &Message
diff --git a/src/qt/locale/nyc3_ne.ts b/src/qt/locale/nyc3_ne.ts
index d141875c6..a0e4bc96b 100644
--- a/src/qt/locale/nyc3_ne.ts
+++ b/src/qt/locale/nyc3_ne.ts
@@ -231,7 +231,7 @@
OverviewPage
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.देखाइएको सूचना पूरानो हुन सक्छ । कनेक्सन स्थापित भएपछि, तपाईंको वालेट बिटकोइन नेटवर्कमा स्वचालित रूपमा समिकरण हुन्छ , तर यो प्रक्रिया अहिले सम्म पूरा भएको छैन ।
@@ -348,7 +348,7 @@
यो ठेगानालाई प्रयोग गरिएको ठेगानाको सूचीमा थप्न एउटा लेबल प्रविष्ट गर्नुहोस्
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.बिटकोइनमा संलग्न गरिएको सन्देश: तपाईंको मध्यस्थको लागि कारोबारको साथमा भण्डारण गरिने URI । नोट: यो सन्देश बिटकोइन नेटवर्क मार्फत पठाइने छैन ।
diff --git a/src/qt/locale/nyc3_nl.ts b/src/qt/locale/nyc3_nl.ts
index d5253d545..eb4fe1f11 100644
--- a/src/qt/locale/nyc3_nl.ts
+++ b/src/qt/locale/nyc3_nl.ts
@@ -66,12 +66,12 @@
Ontvangstadressen
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Dit zijn uw Bitcoinadressen om betalingen mee te verzenden. Controleer altijd het bedrag en het ontvangstadres voordat u uw bitcoins verzendt.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Dit zijn uw Bitcoin-adressen waarmee u betalingen kunt ontvangen. We raden u aan om een nieuw ontvangstadres voor elke transactie te gebruiken.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Dit zijn uw NYC3-adressen waarmee u betalingen kunt ontvangen. We raden u aan om een nieuw ontvangstadres voor elke transactie te gebruiken.&Copy Address
@@ -366,8 +366,8 @@
&Verifiëer bericht...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,11 +390,11 @@
Versleutel de geheime sleutels die bij uw portemonnee horen
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themOnderteken berichten met uw Bitcoinadressen om te bewijzen dat u deze adressen bezit
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesVerifiëer handtekeningen om zeker te zijn dat de berichten zijn ondertekend met de gespecificeerde Bitcoinadressen
@@ -434,7 +434,7 @@
&Opdrachtregelopties
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network%n actieve verbinding met Bitcoinnetwerk%n actieve verbindingen met Bitcoinnetwerk
@@ -502,8 +502,8 @@
Portemonnee Sluiten
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Toon het %1 hulpbericht om een lijst te krijgen met mogelijke Bitcoin commandoregelopties
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Toon het %1 hulpbericht om een lijst te krijgen met mogelijke NYC3 commandoregeloptiesdefault wallet
@@ -614,8 +614,8 @@
Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Een fatale fout heeft zich voorgedaan. Bitcoin kan niet veilig worden verdergezet en wordt afgesloten.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Een fatale fout heeft zich voorgedaan. NYC3 kan niet veilig worden verdergezet en wordt afgesloten.
@@ -901,8 +901,8 @@
Gebruik een aangepaste gegevensmap:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -913,8 +913,8 @@
Gemiddeld %1 GB aan data zal worden opgeslagen in deze map.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 zal een kopie van de blokketen van Bitcoin downloaden en opslaan.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 zal een kopie van de blokketen van NYC3 downloaden en opslaan.The wallet will also be stored in this directory.
@@ -945,7 +945,7 @@
Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below.
- Recente transacties zijn mogelijk nog niet zichtbaar. De balans van de portemonnee is daarom mogelijk niet correct. Deze informatie is correct van zodra de synchronisatie met het Bitcoin-netwerk werd voltooid, zoals onderaan beschreven.
+ Recente transacties zijn mogelijk nog niet zichtbaar. De balans van de portemonnee is daarom mogelijk niet correct. Deze informatie is correct van zodra de synchronisatie met het NYC3-netwerk werd voltooid, zoals onderaan beschreven.Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network.
@@ -1130,7 +1130,7 @@
&Spendeer onbevestigd wisselgeld
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Open de Bitcoinpoort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt en het aanstaat.
@@ -1146,7 +1146,7 @@
Sta inkomende verbindingen toe
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.Verbind met het Bitcoinnetwerk via een SOCKS5 proxy.
@@ -1182,7 +1182,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.Maak verbinding met Bitcoinnetwerk door een aparte SOCKS5-proxy voor verborgen diensten van Tor.
@@ -1293,7 +1293,7 @@
Vorm
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.De weergegeven informatie kan verouderd zijn. Uw portemonnee synchroniseert automatisch met het Bitcoinnetwerk nadat een verbinding is gelegd, maar dit proces is nog niet voltooid.
@@ -1397,7 +1397,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI kan niet verwerkt worden! Dit kan het gevolg zijn van een ongeldig Bitcoin adres of misvormde URI parameters.
+ URI kan niet verwerkt worden! Dit kan het gevolg zijn van een ongeldig NYC3 adres of misvormde URI parameters.Payment request file handling
@@ -1954,7 +1954,7 @@
&Bericht
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.Een optioneel bericht om bij te voegen aan het betalingsverzoek, welke zal getoond worden wanneer het verzoek is geopend. Opmerking: Het bericht zal niet worden verzonden met de betaling over het Bitcoinnetwerk.
@@ -2474,7 +2474,7 @@ Notitie: Omdat de vergoeding per byte wordt gerekend, zal een vergoeding van "10
Vul een label voor dit adres in om het aan de lijst met gebruikte adressen toe te voegen
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.Een bericht dat werd toegevoegd aan de bitcoin: URI welke wordt opgeslagen met de transactie ter referentie. Opmerking: Dit bericht zal niet worden verzonden over het Bitcoinnetwerk.
diff --git a/src/qt/locale/nyc3_pam.ts b/src/qt/locale/nyc3_pam.ts
index 7ae615f9e..5f0f7dc63 100644
--- a/src/qt/locale/nyc3_pam.ts
+++ b/src/qt/locale/nyc3_pam.ts
@@ -146,8 +146,8 @@
&Beripikan ing message...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Show / Hide
@@ -281,8 +281,8 @@
Malaus ka
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -318,8 +318,8 @@
&Network
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Ibuklat yang antimanu ing Bitcoin client port king router. Gagana yamu ini istung ing router mu susuporta yang UPnP at magsilbi ya.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Ibuklat yang antimanu ing NYC3 client port king router. Gagana yamu ini istung ing router mu susuporta yang UPnP at magsilbi ya.Map port using &UPnP
@@ -397,8 +397,8 @@
Form
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Ing makaltong impormasion mapalyaring luma ne. Ing kekang wallet otomatiku yang mag-synchronize keng Bitcoin network istung mekakonekta ne king network, oneng ing prosesung ini ali ya pa kumpletu.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Ing makaltong impormasion mapalyaring luma ne. Ing kekang wallet otomatiku yang mag-synchronize keng NYC3 network istung mekakonekta ne king network, oneng ing prosesung ini ali ya pa kumpletu.Your current spendable balance
@@ -736,7 +736,7 @@
bitcoin-coreNYC3
- Kapilubluban ning Bitcoin
+ Kapilubluban ning NYC3Corrupted block database detected
diff --git a/src/qt/locale/nyc3_pl.ts b/src/qt/locale/nyc3_pl.ts
index a0d331600..f21a173d4 100644
--- a/src/qt/locale/nyc3_pl.ts
+++ b/src/qt/locale/nyc3_pl.ts
@@ -66,12 +66,12 @@
Adresy odbioru
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Tutaj znajdują się adresy Bitcoin na które wysyłasz płatności. Zawsze sprawdzaj ilość i adres odbiorcy przed wysyłką monet.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Tutaj znajdują się adresy NYC3 na które wysyłasz płatności. Zawsze sprawdzaj ilość i adres odbiorcy przed wysyłką monet.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- To są twoje adresy Bitcoin do odbierania płatności. Zaleca się używanie nowych adresów odbiorczych dla każdej transakcji.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ To są twoje adresy NYC3 do odbierania płatności. Zaleca się używanie nowych adresów odbiorczych dla każdej transakcji.&Copy Address
@@ -366,8 +366,8 @@
&Zweryfikuj wiadomość...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,11 +390,11 @@
Szyfruj klucze prywatne, które są w twoim portfelu
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themPodpisz wiadomości swoim adresem aby udowodnić jego posiadanie
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesZweryfikuj wiadomość, aby upewnić się, że została podpisana podanym adresem bitcoinowym.
@@ -434,8 +434,8 @@
&Opcje linii komend
- %n active connection(s) to Bitcoin network
- %n aktywnych połączeń do sieci Bitcoin%n aktywnych połączeń do sieci Bitcoin%n aktywnych połączeń do sieci Bitcoin%n aktywnych połączeń do sieci Bitcoin
+ %n active connection(s) to NYC3 network
+ %n aktywnych połączeń do sieci NYC3%n aktywnych połączeń do sieci NYC3%n aktywnych połączeń do sieci NYC3%n aktywnych połączeń do sieci NYC3Indexing blocks on disk...
@@ -486,7 +486,7 @@
Zamknij Portfel...
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsPokaż pomoc %1 aby zobaczyć listę wszystkich opcji lnii poleceń.
@@ -590,8 +590,8 @@
Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Wystąpił krytyczny błąd. Bitcoin nie jest w stanie kontynuować bezpiecznie i zostanie zamknięty.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Wystąpił krytyczny błąd. NYC3 nie jest w stanie kontynuować bezpiecznie i zostanie zamknięty.
@@ -781,7 +781,7 @@
The entered address "%1" is not a valid NYC3 address.
- Wprowadzony adres "%1" nie jest prawidłowym adresem Bitcoin.
+ Wprowadzony adres "%1" nie jest prawidłowym adresem NYC3.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -877,8 +877,8 @@
Użyj wybranego folderu dla danych
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -889,8 +889,8 @@
Około %1 GB danych zostanie zapisane w tym katalogu.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 pobierze i zapisze lokalnie kopię łańcucha bloków Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 pobierze i zapisze lokalnie kopię łańcucha bloków NYC3.The wallet will also be stored in this directory.
@@ -1098,8 +1098,8 @@
Wydaj niepotwierdzoną re&sztę
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Automatycznie otwiera port klienta Bitcoin na routerze. Ta opcja dzieła tylko jeśli twój router wspiera UPnP i jest ono włączone.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatycznie otwiera port klienta NYC3 na routerze. Ta opcja dzieła tylko jeśli twój router wspiera UPnP i jest ono włączone.Map port using &UPnP
@@ -1114,8 +1114,8 @@
Zezwól na &połączenia przychodzące
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Połącz się z siecią Bitcoin poprzez proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Połącz się z siecią NYC3 poprzez proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1150,8 +1150,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Połącz się z siecią Bitcoin przy pomocy oddzielnego SOCKS5 proxy dla sieci TOR
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Połącz się z siecią NYC3 przy pomocy oddzielnego SOCKS5 proxy dla sieci TOR&Window
@@ -1257,7 +1257,7 @@
Formularz
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.Wyświetlana informacja może być nieaktualna. Twój portfel synchronizuje się automatycznie z siecią bitcoin, zaraz po tym jak uzyskano połączenie, ale proces ten nie został jeszcze ukończony.
@@ -1353,7 +1353,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- Nie można przeanalizować identyfikatora URI! Może to być spowodowane nieważnym adresem Bitcoin lub nieprawidłowymi parametrami URI.
+ Nie można przeanalizować identyfikatora URI! Może to być spowodowane nieważnym adresem NYC3 lub nieprawidłowymi parametrami URI.Payment request file handling
@@ -1898,8 +1898,8 @@
&Wiadomość:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Opcjonalna wiadomość do dołączenia do żądania płatności, która będzie wyświetlana, gdy żądanie zostanie otwarte. Uwaga: wiadomość ta nie zostanie wysłana wraz z płatnością w sieci Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Opcjonalna wiadomość do dołączenia do żądania płatności, która będzie wyświetlana, gdy żądanie zostanie otwarte. Uwaga: wiadomość ta nie zostanie wysłana wraz z płatnością w sieci NYC3.An optional label to associate with the new receiving address.
@@ -2321,7 +2321,7 @@ Uwaga: Ponieważ opłata jest naliczana za każdy bajt, opłata "100 satoshi za
Warning: Invalid NYC3 address
- Ostrzeżenie: nieprawidłowy adres Bitcoin
+ Ostrzeżenie: nieprawidłowy adres NYC3Warning: Unknown change address
@@ -2364,7 +2364,7 @@ Uwaga: Ponieważ opłata jest naliczana za każdy bajt, opłata "100 satoshi za
The NYC3 address to send the payment to
- Adres Bitcoin gdzie wysłać płatność
+ Adres NYC3 gdzie wysłać płatnośćAlt+A
@@ -2411,8 +2411,8 @@ Uwaga: Ponieważ opłata jest naliczana za każdy bajt, opłata "100 satoshi za
Wprowadź etykietę dla tego adresu by dodać go do listy użytych adresów
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Wiadomość, która została dołączona do URI bitcoin:, która będzie przechowywana wraz z transakcją w celach informacyjnych. Uwaga: Ta wiadomość nie będzie rozsyłana w sieci Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Wiadomość, która została dołączona do URI bitcoin:, która będzie przechowywana wraz z transakcją w celach informacyjnych. Uwaga: Ta wiadomość nie będzie rozsyłana w sieci NYC3.Pay To:
@@ -2461,7 +2461,7 @@ Uwaga: Ponieważ opłata jest naliczana za każdy bajt, opłata "100 satoshi za
The NYC3 address to sign the message with
- Adres Bitcoin, za pomocą którego podpisać wiadomość
+ Adres NYC3, za pomocą którego podpisać wiadomośćChoose previously used address
@@ -2518,11 +2518,11 @@ Zwróć uwagę, że poprawnie zweryfikowana wiadomość potwierdza to, że nadaw
The NYC3 address the message was signed with
- Adres Bitcoin, którym została podpisana wiadomość
+ Adres NYC3, którym została podpisana wiadomośćVerify the message to ensure it was signed with the specified NYC3 address
- Zweryfikuj wiadomość, aby upewnić się, że została podpisana odpowiednim adresem Bitcoin.
+ Zweryfikuj wiadomość, aby upewnić się, że została podpisana odpowiednim adresem NYC3.Verify &Message
diff --git a/src/qt/locale/nyc3_pt_BR.ts b/src/qt/locale/nyc3_pt_BR.ts
index 02de3211e..bb6e63f16 100644
--- a/src/qt/locale/nyc3_pt_BR.ts
+++ b/src/qt/locale/nyc3_pt_BR.ts
@@ -66,11 +66,11 @@
Endereço de &recebimento
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Estes são os seus endereços para enviar pagamentos. Sempre cheque a quantia e o endereço do destinatário antes de enviar moedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Estes são os seus endereços para receber pagamentos. É recomendado usar um novo para cada transação.
@@ -366,8 +366,8 @@
&Verificar mensagem...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Criptografar as chaves privadas que pertencem à sua carteira
- Sign messages with your Bitcoin addresses to prove you own them
- Assine mensagens com seus endereços Bitcoin para provar que você é dono delas
+ Sign messages with your NYC3 addresses to prove you own them
+ Assine mensagens com seus endereços NYC3 para provar que você é dono delas
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificar mensagens para se assegurar que elas foram assinadas pelo dono de Endereços Bitcoin específicos
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificar mensagens para se assegurar que elas foram assinadas pelo dono de Endereços NYC3 específicos&File
@@ -434,8 +434,8 @@
Opções de linha de &comando
- %n active connection(s) to Bitcoin network
- %n conexão ativa na rede Bitcoin%n conexões ativas na rede Bitcoin
+ %n active connection(s) to NYC3 network
+ %n conexão ativa na rede NYC3%n conexões ativas na rede NYC3Indexing blocks on disk...
@@ -502,8 +502,8 @@
Fechar carteira
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Mostrar a mensagem de ajuda do %1 para obter uma lista com possíveis opções de linha de comando Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Mostrar a mensagem de ajuda do %1 para obter uma lista com possíveis opções de linha de comando NYC3default wallet
@@ -614,8 +614,8 @@
Carteira está <b>criptografada</b> e atualmente <b>bloqueada</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Um erro fatal ocorreu. Bitcoin não pode continuar em segurança e irá fechar.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Um erro fatal ocorreu. NYC3 não pode continuar em segurança e irá fechar.
@@ -901,8 +901,8 @@
Use um diretório de dados personalizado:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -913,8 +913,8 @@
Aproximadamente %1 GB de dados serão armazenados neste diretório.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 irá baixar e armazenar uma cópia da block chain do Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 irá baixar e armazenar uma cópia da block chain do NYC3.The wallet will also be stored in this directory.
@@ -1130,8 +1130,8 @@
Ga&star troco não confirmado
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Abrir automaticamente no roteador as portas do cliente Bitcoin. Isto só funcionará se seu roteador suportar UPnP e esta função estiver habilitada.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Abrir automaticamente no roteador as portas do cliente NYC3. Isto só funcionará se seu roteador suportar UPnP e esta função estiver habilitada.Map port using &UPnP
@@ -1146,8 +1146,8 @@
Permitir conexões de entrada
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Conectar na rede Bitcoin através de um proxy SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Conectar na rede NYC3 através de um proxy SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1182,8 +1182,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Conecte-se à rede Bitcoin através de um proxy SOCKS5 separado para utilizar serviços ocultos Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Conecte-se à rede NYC3 através de um proxy SOCKS5 separado para utilizar serviços ocultos Tor.&Window
@@ -1293,8 +1293,8 @@
Formulário
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- A informação mostrada pode estar desatualizada. Sua carteira sincroniza automaticamente com a rede Bitcoin depois que a conexão é estabelecida, mas este processo ainda não está completo.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ A informação mostrada pode estar desatualizada. Sua carteira sincroniza automaticamente com a rede NYC3 depois que a conexão é estabelecida, mas este processo ainda não está completo.Watch-only:
@@ -1499,7 +1499,7 @@
Enter a NYC3 address (e.g. %1)
- Informe um endereço Bitcoin (ex: %1)
+ Informe um endereço NYC3 (ex: %1)%1 d
@@ -1954,8 +1954,8 @@
&Mensagem:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Uma mensagem opcional que será anexada na cobrança e será mostrada quando ela for aberta. Nota: A mensagem não será enviada com o pagamento pela rede Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Uma mensagem opcional que será anexada na cobrança e será mostrada quando ela for aberta. Nota: A mensagem não será enviada com o pagamento pela rede NYC3.An optional label to associate with the new receiving address.
@@ -2384,7 +2384,7 @@ Nota: Como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por
Warning: Invalid NYC3 address
- Aviso: Endereço Bitcoin inválido
+ Aviso: Endereço NYC3 inválidoWarning: Unknown change address
@@ -2427,7 +2427,7 @@ Nota: Como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por
The NYC3 address to send the payment to
- O endereço Bitcoin para enviar o pagamento
+ O endereço NYC3 para enviar o pagamentoAlt+A
@@ -2474,8 +2474,8 @@ Nota: Como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por
Digite um rótulo para este endereço para adicioná-lo no catálogo
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- A mensagem que foi anexada ao bitcoin: URI na qual será gravada na transação para sua referência. Nota: Essa mensagem não será gravada publicamente na rede Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ A mensagem que foi anexada ao bitcoin: URI na qual será gravada na transação para sua referência. Nota: Essa mensagem não será gravada publicamente na rede NYC3.Pay To:
@@ -2524,7 +2524,7 @@ Nota: Como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por
The NYC3 address to sign the message with
- O endereço Bitcoin que assinará a mensagem
+ O endereço NYC3 que assinará a mensagemChoose previously used address
@@ -2556,7 +2556,7 @@ Nota: Como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por
Sign the message to prove you own this NYC3 address
- Assinar mensagem para provar que você é dono deste endereço Bitcoin
+ Assinar mensagem para provar que você é dono deste endereço NYC3Sign &Message
@@ -2580,11 +2580,11 @@ Nota: Como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por
The NYC3 address the message was signed with
- O endereço Bitcoin que foi usado para assinar a mensagem
+ O endereço NYC3 que foi usado para assinar a mensagemVerify the message to ensure it was signed with the specified NYC3 address
- Verificar mensagem para se assegurar que ela foi assinada pelo dono de um endereço Bitcoin específico
+ Verificar mensagem para se assegurar que ela foi assinada pelo dono de um endereço NYC3 específicoVerify &Message
diff --git a/src/qt/locale/nyc3_pt_PT.ts b/src/qt/locale/nyc3_pt_PT.ts
index 8b5e1275b..c230b1f56 100644
--- a/src/qt/locale/nyc3_pt_PT.ts
+++ b/src/qt/locale/nyc3_pt_PT.ts
@@ -66,12 +66,12 @@
Endereços de receção
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Estes são os seus endereços Bitcoin para enviar pagamentos. Verifique sempre o valor e o endereço de receção antes de enviar moedas.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Estes são os seus endereços NYC3 para enviar pagamentos. Verifique sempre o valor e o endereço de receção antes de enviar moedas.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Estes são os seus endereços Bitcoin para receber pagamentos. É recomendado que utilize um endereço de receção novo para cada transação.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Estes são os seus endereços NYC3 para receber pagamentos. É recomendado que utilize um endereço de receção novo para cada transação.&Copy Address
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- Enviar moedas para um endereço Bitcoin
+ Enviar moedas para um endereço NYC3Backup wallet to another location
@@ -366,8 +366,8 @@
&Verificar mensagem...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Encriptar as chaves privadas que pertencem à sua carteira
- Sign messages with your Bitcoin addresses to prove you own them
- Assine as mensagens com os seus endereços Bitcoin para provar que é o proprietário dos mesmos
+ Sign messages with your NYC3 addresses to prove you own them
+ Assine as mensagens com os seus endereços NYC3 para provar que é o proprietário dos mesmos
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifique mensagens para assegurar que foram assinadas com o endereço Bitcoin especificado
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifique mensagens para assegurar que foram assinadas com o endereço NYC3 especificado&File
@@ -434,8 +434,8 @@
&Opções da linha de &comando
- %n active connection(s) to Bitcoin network
- %n ligação ativa à rede Bitcoin%n ligações ativas à rede Bitcoin
+ %n active connection(s) to NYC3 network
+ %n ligação ativa à rede NYC3%n ligações ativas à rede NYC3Indexing blocks on disk...
@@ -502,7 +502,7 @@
Fechar a carteira
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsMostrar a mensagem de ajuda %1 para obter uma lista com possíveis opções a usar na linha de comandos.
@@ -614,8 +614,8 @@
A carteira está <b>encriptada</b> e atualmente <b>bloqueada</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Ocorreu um erro fatal. O Bitcoin não pode continuar com segurança e irá fechar.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Ocorreu um erro fatal. O NYC3 não pode continuar com segurança e irá fechar.
@@ -897,8 +897,8 @@
Utilizar uma pasta de dados personalizada:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -909,8 +909,8 @@
Aproximadamente %1 GB de dados irão ser guardados nesta pasta.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 irá descarregar e armazenar uma cópia da cadeia de blocos da Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 irá descarregar e armazenar uma cópia da cadeia de blocos da NYC3.The wallet will also be stored in this directory.
@@ -1127,7 +1127,7 @@
&Gastar troco não confirmado
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Abrir a porta do cliente bitcoin automaticamente no seu router. Isto apenas funciona se o seu router suportar UPnP e este se encontrar ligado.
@@ -1143,8 +1143,8 @@
Permitir ligações de "a receber"
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Conectar à rede da Bitcoin através dum proxy SOCLS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Conectar à rede da NYC3 através dum proxy SOCLS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1179,8 +1179,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Ligar à rede Bitcoin através de um proxy SOCKS5 separado para utilizar os serviços ocultos do Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Ligar à rede NYC3 através de um proxy SOCKS5 separado para utilizar os serviços ocultos do Tor.&Window
@@ -1290,8 +1290,8 @@
Formulário
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- A informação mostrada poderá estar desatualizada. A sua carteira sincroniza automaticamente com a rede Bitcoin depois de estabelecer ligação, mas este processo ainda não está completo.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ A informação mostrada poderá estar desatualizada. A sua carteira sincroniza automaticamente com a rede NYC3 depois de estabelecer ligação, mas este processo ainda não está completo.Watch-only:
@@ -1394,7 +1394,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI não foi lido corretamente! Isto pode ser causado por um endereço Bitcoin inválido ou por parâmetros URI malformados.
+ URI não foi lido corretamente! Isto pode ser causado por um endereço NYC3 inválido ou por parâmetros URI malformados.Payment request file handling
@@ -1496,7 +1496,7 @@
Enter a NYC3 address (e.g. %1)
- Introduza um endereço Bitcoin (ex. %1)
+ Introduza um endereço NYC3 (ex. %1)%1 d
@@ -1947,8 +1947,8 @@
&Mensagem:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Uma mensagem opcional para anexar ao pedido de pagamento, que será exibida quando o pedido for aberto. Nota: A mensagem não será enviada com o pagamento através da rede Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Uma mensagem opcional para anexar ao pedido de pagamento, que será exibida quando o pedido for aberto. Nota: A mensagem não será enviada com o pagamento através da rede NYC3.An optional label to associate with the new receiving address.
@@ -2374,7 +2374,7 @@ Nota: como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por u
Warning: Invalid NYC3 address
- Aviso: endereço Bitcoin inválido
+ Aviso: endereço NYC3 inválidoWarning: Unknown change address
@@ -2417,7 +2417,7 @@ Nota: como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por u
The NYC3 address to send the payment to
- O endereço Bitcoin para enviar o pagamento
+ O endereço NYC3 para enviar o pagamentoAlt+A
@@ -2464,8 +2464,8 @@ Nota: como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por u
Introduza uma etiqueta para este endereço para o adicionar à sua lista de endereços usados
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Uma mensagem que estava anexada ao URI bitcoin: que será armazenada com a transação para sua referência. Nota: Esta mensagem não será enviada através da rede Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Uma mensagem que estava anexada ao URI bitcoin: que será armazenada com a transação para sua referência. Nota: Esta mensagem não será enviada através da rede NYC3.Pay To:
@@ -2514,7 +2514,7 @@ Nota: como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por u
The NYC3 address to sign the message with
- O endereço Bitcoin para designar a mensagem
+ O endereço NYC3 para designar a mensagemChoose previously used address
@@ -2546,7 +2546,7 @@ Nota: como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por u
Sign the message to prove you own this NYC3 address
- Assine uma mensagem para provar que é dono deste endereço Bitcoin
+ Assine uma mensagem para provar que é dono deste endereço NYC3Sign &Message
@@ -2570,11 +2570,11 @@ Nota: como a taxa é calculada por byte, uma taxa de "100 satoshis por kB" por u
The NYC3 address the message was signed with
- O endereço Bitcoin com que a mensagem foi designada
+ O endereço NYC3 com que a mensagem foi designadaVerify the message to ensure it was signed with the specified NYC3 address
- Verifique a mensagem para assegurar que foi assinada com o endereço Bitcoin especificado
+ Verifique a mensagem para assegurar que foi assinada com o endereço NYC3 especificadoVerify &Message
diff --git a/src/qt/locale/nyc3_ro.ts b/src/qt/locale/nyc3_ro.ts
index 4f47091a1..6a7e7ef62 100644
--- a/src/qt/locale/nyc3_ro.ts
+++ b/src/qt/locale/nyc3_ro.ts
@@ -62,12 +62,12 @@
Adresele de primire
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Acestea sunt adresele tale Bitcoin pentru trimiterea plății. Verifică mereu suma și adresa de primire înainte de trimiterea monedelor.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Acestea sunt adresele tale NYC3 pentru trimiterea plății. Verifică mereu suma și adresa de primire înainte de trimiterea monedelor.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Acestea sunt adresele tale Bitcoin pentru primirea plăților. Este recomandată folosirea de noi adrese de primire pentru fiecare tranzacție.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Acestea sunt adresele tale NYC3 pentru primirea plăților. Este recomandată folosirea de noi adrese de primire pentru fiecare tranzacție.&Copy Address
@@ -299,7 +299,7 @@
Send coins to a NYC3 address
- Trimite monedele către o adresă Bitcoin
+ Trimite monedele către o adresă NYC3Backup wallet to another location
@@ -322,8 +322,8 @@
&Verifică mesajul...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -346,12 +346,12 @@
Criptează cheile private care aparțin portofelului tău.
- Sign messages with your Bitcoin addresses to prove you own them
- Semnează mesajele cu adresa ta de Bitcoin pentru a face dovada că îți aparțin.
+ Sign messages with your NYC3 addresses to prove you own them
+ Semnează mesajele cu adresa ta de NYC3 pentru a face dovada că îți aparțin.
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifică mesajele cu scopul de a asigura faptul că au fost semnate cu adresa de Bitcoin specificată.
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifică mesajele cu scopul de a asigura faptul că au fost semnate cu adresa de NYC3 specificată.&File
@@ -613,8 +613,8 @@
Alege un folder/director personalizat
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
diff --git a/src/qt/locale/nyc3_ro_RO.ts b/src/qt/locale/nyc3_ro_RO.ts
index 79169b4f3..d61d5248c 100644
--- a/src/qt/locale/nyc3_ro_RO.ts
+++ b/src/qt/locale/nyc3_ro_RO.ts
@@ -66,12 +66,12 @@
Adresa de primire
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Acestea sunt adresele tale Bitcoin pentru efectuarea platilor. Intotdeauna verifica atent suma de plata si adresa beneficiarului inainte de a trimite monede.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Acestea sunt adresele tale NYC3 pentru efectuarea platilor. Intotdeauna verifica atent suma de plata si adresa beneficiarului inainte de a trimite monede.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Acestea sunt adresele tale Bitcoin pentru receptionarea platilor. Este recomandat sa folosesti mereu o adresa noua pentru primirea platilor.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Acestea sunt adresele tale NYC3 pentru receptionarea platilor. Este recomandat sa folosesti mereu o adresa noua pentru primirea platilor.&Copy Address
@@ -339,7 +339,7 @@
Send coins to a NYC3 address
- Trimite monede către o adresă Bitcoin
+ Trimite monede către o adresă NYC3Backup wallet to another location
@@ -362,8 +362,8 @@
&Verifică mesaj...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -386,12 +386,12 @@
Criptează cheile private ale portofelului dvs.
- Sign messages with your Bitcoin addresses to prove you own them
- Semnaţi mesaje cu adresa dvs. Bitcoin pentru a dovedi că vă aparţin
+ Sign messages with your NYC3 addresses to prove you own them
+ Semnaţi mesaje cu adresa dvs. NYC3 pentru a dovedi că vă aparţin
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verificaţi mesaje pentru a vă asigura că au fost semnate cu adresa Bitcoin specificată
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verificaţi mesaje pentru a vă asigura că au fost semnate cu adresa NYC3 specificată&File
@@ -430,8 +430,8 @@
Opţiuni linie de &comandă
- %n active connection(s) to Bitcoin network
- %n conexiune activă către reţeaua Bitcoin%n conexiuni active către reţeaua Bitcoin%n de conexiuni active către reţeaua Bitcoin
+ %n active connection(s) to NYC3 network
+ %n conexiune activă către reţeaua NYC3%n conexiuni active către reţeaua NYC3%n de conexiuni active către reţeaua NYC3Indexing blocks on disk...
@@ -474,8 +474,8 @@
Actualizat
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Arată mesajul de ajutor %1 pentru a obţine o listă cu opţiunile posibile de linii de comandă Bitcoin
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Arată mesajul de ajutor %1 pentru a obţine o listă cu opţiunile posibile de linii de comandă NYC3default wallet
@@ -562,8 +562,8 @@
Portofelul este <b>criptat</b> iar în momentul de faţă este <b>blocat</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- A survenit o eroare fatală. Bitcoin nu mai poate continua în siguranţă şi se va opri.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ A survenit o eroare fatală. NYC3 nu mai poate continua în siguranţă şi se va opri.
@@ -749,7 +749,7 @@
The entered address "%1" is not a valid NYC3 address.
- Adresa introdusă "%1" nu este o adresă Bitcoin validă.
+ Adresa introdusă "%1" nu este o adresă NYC3 validă.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -845,8 +845,8 @@
Foloseşte un dosar de date personalizat:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -857,8 +857,8 @@
Aproximativ %1 GB de date vor fi stocate in acest director.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 va descarca si stoca o copie a blockchainului Bitcoin
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 va descarca si stoca o copie a blockchainului NYC3The wallet will also be stored in this directory.
@@ -889,7 +889,7 @@
Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below.
- Tranzactiile recente pot sa nu fie inca vizibile, de aceea balanta portofelului poate fi incorecta. Aceasta informatie va fi corecta de indata ce portofelul va fi complet sincronizat cu reteaua Bitcoin, asa cum este detaliat mai jos.
+ Tranzactiile recente pot sa nu fie inca vizibile, de aceea balanta portofelului poate fi incorecta. Aceasta informatie va fi corecta de indata ce portofelul va fi complet sincronizat cu reteaua NYC3, asa cum este detaliat mai jos.Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network.
@@ -1066,8 +1066,8 @@
Cheltuire rest neconfirmat
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Deschide automat în router portul aferent clientului Bitcoin. Funcţionează doar dacă routerul duportă UPnP şi e activat.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Deschide automat în router portul aferent clientului NYC3. Funcţionează doar dacă routerul duportă UPnP şi e activat.Map port using &UPnP
@@ -1082,8 +1082,8 @@
Permite conexiuni de intrar&e
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Conectare la reţeaua Bitcoin printr-un proxy SOCKS.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Conectare la reţeaua NYC3 printr-un proxy SOCKS.&Connect through SOCKS5 proxy (default proxy):
@@ -1118,8 +1118,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Conectare la reteaua Bitcoin printr-un proxy SOCKS5 separat pentru serviciile TOR ascunse.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Conectare la reteaua NYC3 printr-un proxy SOCKS5 separat pentru serviciile TOR ascunse.&Window
@@ -1225,8 +1225,8 @@
Form
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Informaţiile afişate pot fi neactualizate. Portofelul dvs. se sincronizează automat cu reţeaua Bitcoin după ce o conexiune este stabilită, dar acest proces nu a fost finalizat încă.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Informaţiile afişate pot fi neactualizate. Portofelul dvs. se sincronizează automat cu reţeaua NYC3 după ce o conexiune este stabilită, dar acest proces nu a fost finalizat încă.Watch-only:
@@ -1301,7 +1301,7 @@
Cannot start bitcoin: click-to-pay handler
- Bitcoin nu poate porni: click-to-pay handler
+ NYC3 nu poate porni: click-to-pay handlerURI handling
@@ -1321,7 +1321,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI nu poate fi analizat! Acest lucru poate fi cauzat de o adresă Bitcoin invalidă sau parametri URI deformaţi.
+ URI nu poate fi analizat! Acest lucru poate fi cauzat de o adresă NYC3 invalidă sau parametri URI deformaţi.Payment request file handling
@@ -1423,7 +1423,7 @@
Enter a NYC3 address (e.g. %1)
- Introduceţi o adresă Bitcoin (de exemplu %1)
+ Introduceţi o adresă NYC3 (de exemplu %1)%1 d
@@ -1866,8 +1866,8 @@
&Mesaj:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Un mesaj opţional de ataşat la cererea de plată, care va fi afişat cînd cererea este deschisă. Notă: Acest mesaj nu va fi trimis cu plata către reţeaua Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Un mesaj opţional de ataşat la cererea de plată, care va fi afişat cînd cererea este deschisă. Notă: Acest mesaj nu va fi trimis cu plata către reţeaua NYC3.An optional label to associate with the new receiving address.
@@ -2378,7 +2378,7 @@ Nota: Cum taxa este calculata per byte, o taxa de "100 satoshi per kB" pentru o
Introduceţi eticheta pentru ca această adresa să fie introdusă în lista de adrese folosite
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.un mesaj a fost ataşat la bitcoin: URI care va fi stocat cu tranzacţia pentru referinţa dvs. Notă: Acest mesaj nu va fi trimis către reţeaua bitcoin.
@@ -2460,7 +2460,7 @@ Nota: Cum taxa este calculata per byte, o taxa de "100 satoshi per kB" pentru o
Sign the message to prove you own this NYC3 address
- Semnează mesajul pentru a dovedi ca deţineţi acestă adresă Bitcoin
+ Semnează mesajul pentru a dovedi ca deţineţi acestă adresă NYC3Sign &Message
@@ -2484,11 +2484,11 @@ Nota: Cum taxa este calculata per byte, o taxa de "100 satoshi per kB" pentru o
The NYC3 address the message was signed with
- Introduceţi o adresă Bitcoin
+ Introduceţi o adresă NYC3Verify the message to ensure it was signed with the specified NYC3 address
- Verificaţi mesajul pentru a vă asigura că a fost semnat cu adresa Bitcoin specificată
+ Verificaţi mesajul pentru a vă asigura că a fost semnat cu adresa NYC3 specificatăVerify &Message
@@ -3140,7 +3140,7 @@ Nota: Cum taxa este calculata per byte, o taxa de "100 satoshi per kB" pentru o
NYC3
- Nucleul Bitcoin
+ Nucleul NYC3The %s developers
diff --git a/src/qt/locale/nyc3_ru.ts b/src/qt/locale/nyc3_ru.ts
index c43c20c0b..56746999d 100644
--- a/src/qt/locale/nyc3_ru.ts
+++ b/src/qt/locale/nyc3_ru.ts
@@ -66,12 +66,12 @@
Адреса получения
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Это ваши адреса Bitcoin для отправки платежей. Всегда проверяйте количество и адрес получателя перед отправкой перевода.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Это ваши адреса NYC3 для отправки платежей. Всегда проверяйте количество и адрес получателя перед отправкой перевода.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Это ваши адреса Bitcoin для приёма платежей. Рекомендуется использовать новый адрес получения для каждой транзакции.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Это ваши адреса NYC3 для приёма платежей. Рекомендуется использовать новый адрес получения для каждой транзакции.&Copy Address
diff --git a/src/qt/locale/nyc3_ru_RU.ts b/src/qt/locale/nyc3_ru_RU.ts
index 8d647e1f9..d474f0995 100644
--- a/src/qt/locale/nyc3_ru_RU.ts
+++ b/src/qt/locale/nyc3_ru_RU.ts
@@ -66,12 +66,12 @@
Адреса получения
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Это ваши Bitcoin адреса для отправки платежа. Всегда проверяйте сумму и адрес получателя перед отправкой платежа.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Это ваши NYC3 адреса для отправки платежа. Всегда проверяйте сумму и адрес получателя перед отправкой платежа.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Это ваши Bitcoin адреса для получения платежей. Настоятельно рекомендуем использовать новые адреса для получения каждой транзакции.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Это ваши NYC3 адреса для получения платежей. Настоятельно рекомендуем использовать новые адреса для получения каждой транзакции.&Copy Address
@@ -366,7 +366,7 @@
&Проверить сообщение...
- Bitcoin
+ NYC3NYC3
@@ -390,12 +390,12 @@
Зашифровать приватные ключи, принадлежащие вашему кошельку
- Sign messages with your Bitcoin addresses to prove you own them
- Подписывайте сообщения Bitcoin адресами чтобы подтвердить что это написали именно Вы
+ Sign messages with your NYC3 addresses to prove you own them
+ Подписывайте сообщения NYC3 адресами чтобы подтвердить что это написали именно Вы
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Проверяйте сообщения чтобы убедиться что они подписаны конкретными Bitcoin адресами
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Проверяйте сообщения чтобы убедиться что они подписаны конкретными NYC3 адресами&File
@@ -434,8 +434,8 @@
Опции командной строки
- %n active connection(s) to Bitcoin network
- %n активное подключение к сети Bitcoin%n активных подключения к сети Bitcoin%n активных подключений к сети Bitcoin%n активных подключений к сети Bitcoin
+ %n active connection(s) to NYC3 network
+ %n активное подключение к сети NYC3%n активных подключения к сети NYC3%n активных подключений к сети NYC3%n активных подключений к сети NYC3Indexing blocks on disk...
@@ -502,7 +502,7 @@
Закрыть кошелек
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsПоказать помощь по %1, чтобы получить список доступных параметров командной строки
@@ -614,8 +614,8 @@
Кошелек <b>зашифрован</b> и сейчас <b>заблокирован</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Произошла критическая ошибка. Bitcoin больше не может продолжать безопасную работу и будет закрыт.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Произошла критическая ошибка. NYC3 больше не может продолжать безопасную работу и будет закрыт.
@@ -805,7 +805,7 @@
The entered address "%1" is not a valid NYC3 address.
- Введенный адрес "%1" не является действительным адресом Bitcoin.
+ Введенный адрес "%1" не является действительным адресом NYC3.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -901,7 +901,7 @@
Использовать пользовательскую директорию данных
- Bitcoin
+ NYC3NYC3
@@ -913,7 +913,7 @@
Приблизительно %1 ГБ данных будет сохранено в эту директорию.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1 скачает и сохранит копию цепи блоков.
@@ -1130,8 +1130,8 @@
&Тратить неподтвержденную сдачу
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Автоматически открыть порт для Bitcoin-клиента на маршрутизаторе. Работает только если Ваш маршрутизатор поддерживает UPnP, и данная функция включена.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Автоматически открыть порт для NYC3-клиента на маршрутизаторе. Работает только если Ваш маршрутизатор поддерживает UPnP, и данная функция включена.Map port using &UPnP
@@ -1146,8 +1146,8 @@
Разрешить входящие соединения
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Подключится к сети Bitcoin через SOCKS5 прокси.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Подключится к сети NYC3 через SOCKS5 прокси.&Connect through SOCKS5 proxy (default proxy):
@@ -1182,7 +1182,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.Соединяться к Биткоин-сети через отдельные SOCKS5 прокси через Tor hidden services:
@@ -1293,8 +1293,8 @@
Форма
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью Bitcoin после подключения, но этот процесс пока не завершён.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью NYC3 после подключения, но этот процесс пока не завершён.Watch-only:
@@ -1397,7 +1397,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- Не удалось обработать идентификатор! Это может быть связано с неверным Bitcoin-адресом или неправильными параметрами идентификатора.
+ Не удалось обработать идентификатор! Это может быть связано с неверным NYC3-адресом или неправильными параметрами идентификатора.Payment request file handling
@@ -1950,8 +1950,8 @@
&Сообщение:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Необязательное сообщение для запроса платежа, которое будет показано при открытии запроса. Заметьте: сообщение не будет отправлено вместе с платежом через сеть Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Необязательное сообщение для запроса платежа, которое будет показано при открытии запроса. Заметьте: сообщение не будет отправлено вместе с платежом через сеть NYC3.An optional label to associate with the new receiving address.
@@ -2376,7 +2376,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Warning: Invalid NYC3 address
- Предупреждение: Неверный Bitcoin адрес
+ Предупреждение: Неверный NYC3 адресWarning: Unknown change address
@@ -2419,7 +2419,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address to send the payment to
- Bitcoin-адрес, на который отправить платёж
+ NYC3-адрес, на который отправить платёжAlt+A
@@ -2466,8 +2466,8 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Введите метку для этого адреса, чтобы добавить его в список используемых адресов
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Сообщение прикрепленное к bitcoin идентификатору будет сохранено вместе с транзакцией для вашего сведения. Заметьте: сообщение не будет отправлено через сеть Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Сообщение прикрепленное к bitcoin идентификатору будет сохранено вместе с транзакцией для вашего сведения. Заметьте: сообщение не будет отправлено через сеть NYC3.Pay To:
@@ -2516,7 +2516,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address to sign the message with
- Bitcoin-адрес, которым подписать сообщение
+ NYC3-адрес, которым подписать сообщениеChoose previously used address
@@ -2548,7 +2548,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Sign the message to prove you own this NYC3 address
- Подписать сообщение, чтобы доказать владение Bitcoin-адресом
+ Подписать сообщение, чтобы доказать владение NYC3-адресомSign &Message
@@ -2572,11 +2572,11 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address the message was signed with
- Bitcoin-адрес, которым было подписано сообщение
+ NYC3-адрес, которым было подписано сообщениеVerify the message to ensure it was signed with the specified NYC3 address
- Проверить сообщение, чтобы убедиться, что оно было подписано указанным Bitcoin-адресом
+ Проверить сообщение, чтобы убедиться, что оно было подписано указанным NYC3-адресомVerify &Message
diff --git a/src/qt/locale/nyc3_sk.ts b/src/qt/locale/nyc3_sk.ts
index 241a90036..b63028c18 100644
--- a/src/qt/locale/nyc3_sk.ts
+++ b/src/qt/locale/nyc3_sk.ts
@@ -66,12 +66,12 @@
Prijímajúce adresy
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Toto sú Vaše Bitcoin adresy pre posielanie platieb. Vždy skontrolujte sumu a prijímaciu adresu pred poslaním mincí.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Toto sú Vaše NYC3 adresy pre posielanie platieb. Vždy skontrolujte sumu a prijímaciu adresu pred poslaním mincí.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Toto sú vaše Bitcoin adresy pre prijímanie platieb. Odporúča sa použiť vždy novú prijímaciu adresu pre každú transakciu.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Toto sú vaše NYC3 adresy pre prijímanie platieb. Odporúča sa použiť vždy novú prijímaciu adresu pre každú transakciu.&Copy Address
@@ -366,8 +366,8 @@
O&veriť správu...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Zašifruj súkromné kľúče ktoré patria do vašej peňaženky
- Sign messages with your Bitcoin addresses to prove you own them
- Podpísať správu s vašou adresou Bitcoin aby ste preukázali že ju vlastníte
+ Sign messages with your NYC3 addresses to prove you own them
+ Podpísať správu s vašou adresou NYC3 aby ste preukázali že ju vlastníte
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Overiť či správa bola podpísaná uvedenou Bitcoin adresou
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Overiť či správa bola podpísaná uvedenou NYC3 adresou&File
@@ -434,8 +434,8 @@
&Možnosti príkazového riadku
- %n active connection(s) to Bitcoin network
- %n aktívne pripojenie do siete Bitcoin%n aktívne pripojenia do siete Bitcoin%n aktívnych pripojení do siete Bitcoin%n aktívnych pripojení do siete Bitcoin
+ %n active connection(s) to NYC3 network
+ %n aktívne pripojenie do siete NYC3%n aktívne pripojenia do siete NYC3%n aktívnych pripojení do siete NYC3%n aktívnych pripojení do siete NYC3Indexing blocks on disk...
@@ -502,7 +502,7 @@
Zatvoriť peňaženku
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsUkáž %1 zoznam možných nastavení Bitcoinu pomocou príkazového riadku
@@ -614,8 +614,8 @@
Peňaženka je <b>zašifrovaná</b> a momentálne <b>zamknutá</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Vyskytla sa kritická chyba. Bitcoin nemôže ďalej bezpečne pokračovať a ukončí sa.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Vyskytla sa kritická chyba. NYC3 nemôže ďalej bezpečne pokračovať a ukončí sa.
@@ -805,7 +805,7 @@
The entered address "%1" is not a valid NYC3 address.
- Vložená adresa "%1" nieje platnou adresou Bitcoin.
+ Vložená adresa "%1" nieje platnou adresou NYC3.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -901,8 +901,8 @@
Použiť vlastný dátový adresár:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -913,7 +913,7 @@
Približne %1 GB dát bude uložených v tejto zložke.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1 bude sťahovať kopiu reťazca blokov.
@@ -1130,8 +1130,8 @@
&Minúť nepotvrdený výdavok
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Automaticky otvorit port pre Bitcoin na routeri. Toto funguje len ak router podporuje UPnP a je táto podpora aktivovaná.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automaticky otvorit port pre NYC3 na routeri. Toto funguje len ak router podporuje UPnP a je táto podpora aktivovaná.Map port using &UPnP
@@ -1146,8 +1146,8 @@
Povoliť prichá&dzajúce spojenia
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Pripojiť do siete Bitcoin cez proxy server SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Pripojiť do siete NYC3 cez proxy server SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -1182,7 +1182,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.Pripojiť k Bitcoinovej sieti cez separované SOCKS5 proxy pre skrytú službu Tor.
@@ -1293,8 +1293,8 @@
Formulár
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Zobrazené informácie môžu byť neaktuálne. Vaša peňaženka sa automaticky synchronizuje so sieťou Bitcoin po nadviazaní spojenia, ale tento proces ešte nie je ukončený.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Zobrazené informácie môžu byť neaktuálne. Vaša peňaženka sa automaticky synchronizuje so sieťou NYC3 po nadviazaní spojenia, ale tento proces ešte nie je ukončený.Watch-only:
@@ -1369,7 +1369,7 @@
Cannot start bitcoin: click-to-pay handler
- Nemôžeme spustiť Bitcoin: obsluha click-to-pay
+ Nemôžeme spustiť NYC3: obsluha click-to-payURI handling
@@ -1397,7 +1397,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI sa nedá analyzovať! To môže byť spôsobené neplatnou Bitcoin adresou alebo zle nastavenými vlastnosťami URI.
+ URI sa nedá analyzovať! To môže byť spôsobené neplatnou NYC3 adresou alebo zle nastavenými vlastnosťami URI.Payment request file handling
@@ -1955,8 +1955,8 @@
&Správa:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Pridať voliteľnú správu k výzve na zaplatenie, ktorá sa zobrazí keď bude výzva otvorená. Poznámka: Správa nebude poslaná s platbou cez sieť Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Pridať voliteľnú správu k výzve na zaplatenie, ktorá sa zobrazí keď bude výzva otvorená. Poznámka: Správa nebude poslaná s platbou cez sieť NYC3.An optional label to associate with the new receiving address.
@@ -2385,7 +2385,7 @@ Poznámka: Keďže poplatok je počítaný za bajt, poplatok o hodnote "100 sato
Warning: Invalid NYC3 address
- Varovanie: Neplatná Bitcoin adresa
+ Varovanie: Neplatná NYC3 adresaWarning: Unknown change address
@@ -2475,8 +2475,8 @@ Poznámka: Keďže poplatok je počítaný za bajt, poplatok o hodnote "100 sato
Vložte popis pre túto adresu aby sa uložila do zoznamu použitých adries
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Správa ktorá bola pripojená k bitcoin: URI a ktorá bude uložená s transakcou pre Vaše potreby. Poznámka: Táto správa nebude poslaná cez sieť Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Správa ktorá bola pripojená k bitcoin: URI a ktorá bude uložená s transakcou pre Vaše potreby. Poznámka: Táto správa nebude poslaná cez sieť NYC3.Pay To:
@@ -2525,7 +2525,7 @@ Poznámka: Keďže poplatok je počítaný za bajt, poplatok o hodnote "100 sato
The NYC3 address to sign the message with
- Bitcoin adresa pre podpísanie správy s
+ NYC3 adresa pre podpísanie správy sChoose previously used address
@@ -2581,11 +2581,11 @@ Poznámka: Keďže poplatok je počítaný za bajt, poplatok o hodnote "100 sato
The NYC3 address the message was signed with
- Adresa Bitcoin, ktorou bola podpísaná správa
+ Adresa NYC3, ktorou bola podpísaná správaVerify the message to ensure it was signed with the specified NYC3 address
- Overím správy sa uistiť že bola podpísaná označenou Bitcoin adresou
+ Overím správy sa uistiť že bola podpísaná označenou NYC3 adresouVerify &Message
diff --git a/src/qt/locale/nyc3_sl_SI.ts b/src/qt/locale/nyc3_sl_SI.ts
index 7da4ac73d..2a41fb6ff 100644
--- a/src/qt/locale/nyc3_sl_SI.ts
+++ b/src/qt/locale/nyc3_sl_SI.ts
@@ -66,12 +66,12 @@
Imenik naslovov za prejemanje
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- To so vaši Bitcoin naslovi za pošiljanje. Pred pošiljanjem vedno preverite količino in prejemnikov naslov.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ To so vaši NYC3 naslovi za pošiljanje. Pred pošiljanjem vedno preverite količino in prejemnikov naslov.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- To so vaši Bitcoin naslovi za prejemanje. Priporočeno je, da za vsako transakcijo uporabite nov naslov.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ To so vaši NYC3 naslovi za prejemanje. Priporočeno je, da za vsako transakcijo uporabite nov naslov.&Copy Address
@@ -335,7 +335,7 @@
Send coins to a NYC3 address
- Izvedite plačilo na naslov Bitcoin
+ Izvedite plačilo na naslov NYC3Backup wallet to another location
@@ -358,8 +358,8 @@
&Preveri sporočilo ...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -382,12 +382,12 @@
Šifrirajte zasebne ključe, ki se nahajajo v denarnici
- Sign messages with your Bitcoin addresses to prove you own them
- Podpišite poljubno sporočilo z enim svojih naslovov Bitcoin, da prejemniku sporočila dokažete, da je ta naslov v vaši lasti.
+ Sign messages with your NYC3 addresses to prove you own them
+ Podpišite poljubno sporočilo z enim svojih naslovov NYC3, da prejemniku sporočila dokažete, da je ta naslov v vaši lasti.
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Preverite, če je bilo prejeto sporočilo podpisano z določenim naslovom Bitcoin
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Preverite, če je bilo prejeto sporočilo podpisano z določenim naslovom NYC3&File
@@ -426,8 +426,8 @@
Opcije &ukazne vrstice
- %n active connection(s) to Bitcoin network
- %n aktivna povezava v omrežje Bitcoin%n aktivni povezavi v omrežje Bitcoin%n aktivne povezave v omrežje Bitcoin%n aktivnih povezav v omrežje Bitcoin
+ %n active connection(s) to NYC3 network
+ %n aktivna povezava v omrežje NYC3%n aktivni povezavi v omrežje NYC3%n aktivne povezave v omrežje NYC3%n aktivnih povezav v omrežje NYC3Indexing blocks on disk...
@@ -691,8 +691,8 @@
Uporabi to podatkovno mapo:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error: Specified data directory "%1" cannot be created.
@@ -812,7 +812,7 @@
Omogoči &trošenje drobiža iz še nepotrjenih plačil
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Program samodejno odpre ustrezna vrata na usmerjevalniku. To deluje samo, če vaš usmerjevalnik podpira in ima omogočen UPnP.
@@ -820,8 +820,8 @@
Preslikaj vrata z uporabo &UPnP
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Poveži se v omrežje Bitcoin preko posredniškega strežnika SOCKS5.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Poveži se v omrežje NYC3 preko posredniškega strežnika SOCKS5.&Connect through SOCKS5 proxy (default proxy):
@@ -923,8 +923,8 @@
Oblika
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Prikazani podatki so morda zastareli. Program ob vzpostavitvi povezave samodejno sinhronizira denarnico z omrežjem Bitcoin, a trenutno ta proces še ni zaključen.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Prikazani podatki so morda zastareli. Program ob vzpostavitvi povezave samodejno sinhronizira denarnico z omrežjem NYC3, a trenutno ta proces še ni zaključen.Watch-only:
@@ -1021,7 +1021,7 @@
Enter a NYC3 address (e.g. %1)
- Vnesite naslov Bitcoin (npr. %1):
+ Vnesite naslov NYC3 (npr. %1):%1 d
@@ -1268,8 +1268,8 @@
&Sporočilo:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Neobvezno sporočilo kot priponka zahtevku za plačilo, ki bo prikazano, ko bo zahtevek odprt. Opomba: Opravljeno plačilo.prek omrežja Bitcoin tega sporočila ne bo vsebovalo.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Neobvezno sporočilo kot priponka zahtevku za plačilo, ki bo prikazano, ko bo zahtevek odprt. Opomba: Opravljeno plačilo.prek omrežja NYC3 tega sporočila ne bo vsebovalo.An optional label to associate with the new receiving address.
@@ -1509,7 +1509,7 @@
The NYC3 address to send the payment to
- Naslov Bitcoin, na katerega bo plačilo poslano
+ Naslov NYC3, na katerega bo plačilo poslanoAlt+A
@@ -1552,8 +1552,8 @@
Če vnesete oznako za zgornji naslov, se bo skupaj z naslovom shranila v imenk že uporabljenih naslovov
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Sporočilo, ki ste ga pripeli na URI tipa bitcoin:. Shranjeno bo skupaj s podatki o transakciji. Opomba: Sporočilo ne bo poslano preko omrežja Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Sporočilo, ki ste ga pripeli na URI tipa bitcoin:. Shranjeno bo skupaj s podatki o transakciji. Opomba: Sporočilo ne bo poslano preko omrežja NYC3.Pay To:
@@ -1590,7 +1590,7 @@
The NYC3 address to sign the message with
- Naslov Bitcoin, s katerim podpisujete sporočilo
+ Naslov NYC3, s katerim podpisujete sporočiloChoose previously used address
@@ -1646,11 +1646,11 @@
The NYC3 address the message was signed with
- Naslov Bitcoin, s katerim je bilo sporočilo podpisano
+ Naslov NYC3, s katerim je bilo sporočilo podpisanoVerify the message to ensure it was signed with the specified NYC3 address
- Preverite, ali je bilo sporočilo v resnici podpisano z navedenim naslovom Bitcoin.
+ Preverite, ali je bilo sporočilo v resnici podpisano z navedenim naslovom NYC3.Verify &Message
diff --git a/src/qt/locale/nyc3_sn.ts b/src/qt/locale/nyc3_sn.ts
index 0cef82631..cbe9ac39f 100644
--- a/src/qt/locale/nyc3_sn.ts
+++ b/src/qt/locale/nyc3_sn.ts
@@ -90,8 +90,8 @@
Vhura &URI
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -153,8 +153,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3
@@ -183,7 +183,7 @@
Enter a NYC3 address (e.g. %1)
- Nyora kero ye Bitcoin (sekuti %1)
+ Nyora kero ye NYC3 (sekuti %1)%1 d
diff --git a/src/qt/locale/nyc3_sq.ts b/src/qt/locale/nyc3_sq.ts
index 97185c93d..43ac9bc53 100644
--- a/src/qt/locale/nyc3_sq.ts
+++ b/src/qt/locale/nyc3_sq.ts
@@ -54,12 +54,12 @@
Duke marr adresen
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Këto janë Bitcoin adresat e juaja për të dërguar pagesa. Gjithmon kontrolloni shumën dhe adresën pranuese para se të dërgoni monedha.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Këto janë NYC3 adresat e juaja për të dërguar pagesa. Gjithmon kontrolloni shumën dhe adresën pranuese para se të dërgoni monedha.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Këto janë Bitcoin adresat e juaja për të pranuar pagesa. Rekomandohet që gjithmon të përdorni një adresë të re për çdo transaksion.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Këto janë NYC3 adresat e juaja për të pranuar pagesa. Rekomandohet që gjithmon të përdorni një adresë të re për çdo transaksion.&Copy Address
@@ -226,8 +226,8 @@
Ndrysho frazkalimin e përdorur per enkriptimin e portofolit
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -385,8 +385,8 @@
Miresevini
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -788,7 +788,7 @@
bitcoin-coreNYC3
- Berthama Bitcoin
+ Berthama NYC3Information
diff --git a/src/qt/locale/nyc3_sr.ts b/src/qt/locale/nyc3_sr.ts
index 9d906c2b3..dee69c904 100644
--- a/src/qt/locale/nyc3_sr.ts
+++ b/src/qt/locale/nyc3_sr.ts
@@ -66,11 +66,11 @@
Адресе за примање
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Ово су ваше Биткоин адресе за слање уплата. Увек добро проверите износ и адресу на коју шаљете пре него што пошаљете уплату.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.Ово су ваше Биткоин адресе за примање уплате. Препоручује се да се за сваку трансакцију користи нова адреса.
@@ -362,7 +362,7 @@
&Верификовање поруке...
- Bitcoin
+ NYC3Биткоин
@@ -386,11 +386,11 @@
Шифрирај приватни клуљ који припада новчанику.
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themПотписуј поруку са своје Биткоин адресе као доказ да си њихов власник
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesВерификуј поруке и утврди да ли су потписане од стране спецификованих Биткоин адреса
@@ -430,7 +430,7 @@
&Опције командне линије
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network%n aктивна веза са Биткоин мрежом%n aктивних веза са Биткоин мрежом%n aктивних веза са Биткоин мрежом
@@ -474,7 +474,7 @@
Ажурно
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsПрикажи поруку помоћи %1 за листу са могућим опцијама Биткоин командне линије
@@ -550,7 +550,7 @@
Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.Дошло је до критичне грешке. Биткоин не може безбедно да настави са радом и искључиће се.
@@ -806,7 +806,7 @@
Користите прилагођени директоријум података:
- Bitcoin
+ NYC3Биткоин
diff --git a/src/qt/locale/nyc3_sr@latin.ts b/src/qt/locale/nyc3_sr@latin.ts
index 283c91fed..9ca972347 100644
--- a/src/qt/locale/nyc3_sr@latin.ts
+++ b/src/qt/locale/nyc3_sr@latin.ts
@@ -62,12 +62,12 @@
Adresa na koju se prima
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Ovo su Vaše Bitcoin adrese na koju se vrše uplate. Uvek proverite iznos i prijemnu adresu pre slanja novčića.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Ovo su Vaše NYC3 adrese na koju se vrše uplate. Uvek proverite iznos i prijemnu adresu pre slanja novčića.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Ovo su Vaše Bitcoin adrese za primanje uplata. Preporučuje se upotreba nove adrese za svaku transakciju.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Ovo su Vaše NYC3 adrese za primanje uplata. Preporučuje se upotreba nove adrese za svaku transakciju.&Copy Address
@@ -323,7 +323,7 @@
Send coins to a NYC3 address
- Pošalji novčiće na Bitcoin adresu
+ Pošalji novčiće na NYC3 adresuBackup wallet to another location
@@ -346,8 +346,8 @@
&Proveri poruku...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -370,12 +370,12 @@
Enkriptuj privatne ključeve novčanika
- Sign messages with your Bitcoin addresses to prove you own them
- Potpišite poruke sa svojim Bitcoin adresama da biste dokazali njihovo vlasništvo
+ Sign messages with your NYC3 addresses to prove you own them
+ Potpišite poruke sa svojim NYC3 adresama da biste dokazali njihovo vlasništvo
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Proverite poruke da biste utvrdili sa kojim Bitcoin adresama su potpisane
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Proverite poruke da biste utvrdili sa kojim NYC3 adresama su potpisane&File
@@ -499,8 +499,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
diff --git a/src/qt/locale/nyc3_sv.ts b/src/qt/locale/nyc3_sv.ts
index 291924ee4..588074b67 100644
--- a/src/qt/locale/nyc3_sv.ts
+++ b/src/qt/locale/nyc3_sv.ts
@@ -66,12 +66,12 @@
Mottagaradresser
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Detta är dina Bitcoin-adresser för att skicka betalningar. Kontrollera alltid summan och den mottagande adressen innan du skickar bitcoin.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Detta är dina NYC3-adresser för att skicka betalningar. Kontrollera alltid summan och den mottagande adressen innan du skickar bitcoin.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Detta är dina Bitcoin-adresser för att ta emot betalningar. Det rekommenderas att använda en ny mottagningsadress för varje transaktion.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Detta är dina NYC3-adresser för att ta emot betalningar. Det rekommenderas att använda en ny mottagningsadress för varje transaktion.&Copy Address
@@ -344,7 +344,7 @@ Var vänlig och försök igen.
Send coins to a NYC3 address
- Skicka bitcoin till en Bitcoin-adress
+ Skicka bitcoin till en NYC3-adressBackup wallet to another location
@@ -367,8 +367,8 @@ Var vänlig och försök igen.
&Verifiera meddelande...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -391,12 +391,12 @@ Var vänlig och försök igen.
Kryptera de privata nycklar som tillhör din plånbok
- Sign messages with your Bitcoin addresses to prove you own them
- Signera meddelanden med dina Bitcoin-adresser för att bevisa att du äger dem
+ Sign messages with your NYC3 addresses to prove you own them
+ Signera meddelanden med dina NYC3-adresser för att bevisa att du äger dem
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Verifiera meddelanden för att vara säker på att de signerades med angivna Bitcoin-adresser
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Verifiera meddelanden för att vara säker på att de signerades med angivna NYC3-adresser&File
@@ -435,8 +435,8 @@ Var vänlig och försök igen.
&Kommandoradsalternativ
- %n active connection(s) to Bitcoin network
- %n aktiva anslutningar till Bitcoin-nätverket.%n aktiva anslutningar till Bitcoin-nätverket.
+ %n active connection(s) to NYC3 network
+ %n aktiva anslutningar till NYC3-nätverket.%n aktiva anslutningar till NYC3-nätverket.Indexing blocks on disk...
@@ -503,8 +503,8 @@ Var vänlig och försök igen.
Stäng plånboken
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Visa %1 hjälpmeddelande för att få en lista med möjliga Bitcoin kommandoradsalternativ.
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Visa %1 hjälpmeddelande för att få en lista med möjliga NYC3 kommandoradsalternativ.default wallet
@@ -615,8 +615,8 @@ Var vänlig och försök igen.
Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Ett kritiskt fel uppstod. Bitcoin kan inte fortsätta att köra säkert och kommer att avslutas.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Ett kritiskt fel uppstod. NYC3 kan inte fortsätta att köra säkert och kommer att avslutas.
@@ -806,7 +806,7 @@ Var vänlig och försök igen.
The entered address "%1" is not a valid NYC3 address.
- Den angivna adressen "%1" är inte en giltig Bitcoin-adress.
+ Den angivna adressen "%1" är inte en giltig NYC3-adress.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -902,8 +902,8 @@ Var vänlig och försök igen.
Använd en anpassad datakatalog:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -914,8 +914,8 @@ Var vänlig och försök igen.
Ungefär %1 GB data kommer att lagras i den här katalogen.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 kommer att ladda ner och lagra en kopia av Bitcoin-blockkedjan.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 kommer att ladda ner och lagra en kopia av NYC3-blockkedjan.The wallet will also be stored in this directory.
@@ -946,7 +946,7 @@ Var vänlig och försök igen.
Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the bitcoin network, as detailed below.
- Nyligen gjorda transaktioner visas inte korrekt och därför kan din plånboks saldo visas felaktigt. Denna information kommer att visas korrekt så snart din plånbok har synkroniserat klart med Bitcoin-nätverket enligt detaljer nedan.
+ Nyligen gjorda transaktioner visas inte korrekt och därför kan din plånboks saldo visas felaktigt. Denna information kommer att visas korrekt så snart din plånbok har synkroniserat klart med NYC3-nätverket enligt detaljer nedan.Attempting to spend bitcoins that are affected by not-yet-displayed transactions will not be accepted by the network.
@@ -1131,8 +1131,8 @@ Var vänlig och försök igen.
&Spendera obekräftad växel
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Öppna automatiskt Bitcoin-klientens port på routern. Detta fungerar endast om din router stödjer UPnP och det är är aktiverat.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Öppna automatiskt NYC3-klientens port på routern. Detta fungerar endast om din router stödjer UPnP och det är är aktiverat.Map port using &UPnP
@@ -1147,8 +1147,8 @@ Var vänlig och försök igen.
Tillåt ankommande anslutningar
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Anslut till Bitcoin-nätverket genom en SOCKS5-proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Anslut till NYC3-nätverket genom en SOCKS5-proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -1183,8 +1183,8 @@ Var vänlig och försök igen.
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Anslut till Bitcoin-nätverket genom en separat SOCKS5-proxy för dolda tjänster i Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Anslut till NYC3-nätverket genom en separat SOCKS5-proxy för dolda tjänster i Tor.&Window
@@ -1294,8 +1294,8 @@ Var vänlig och försök igen.
Formulär
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Den visade informationen kan vara inaktuell. Plånboken synkroniseras automatiskt med Bitcoin-nätverket efter att anslutningen är upprättad, men denna process har inte slutförts ännu.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Den visade informationen kan vara inaktuell. Plånboken synkroniseras automatiskt med NYC3-nätverket efter att anslutningen är upprättad, men denna process har inte slutförts ännu.Watch-only:
@@ -1390,7 +1390,7 @@ Var vänlig och försök igen.
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI kan inte parsas! Detta kan orsakas av en ogiltig Bitcoin-adress eller felaktiga URI-parametrar.
+ URI kan inte parsas! Detta kan orsakas av en ogiltig NYC3-adress eller felaktiga URI-parametrar.Payment request file handling
@@ -1492,7 +1492,7 @@ Var vänlig och försök igen.
Enter a NYC3 address (e.g. %1)
- Ange en Bitcoin-adress (t.ex. %1)
+ Ange en NYC3-adress (t.ex. %1)%1 d
@@ -1935,8 +1935,8 @@ Var vänlig och försök igen.
&Meddelande:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Ett valfritt meddelande att bifoga betalningsbegäran, vilket visas när begäran öppnas. Obs: Meddelandet kommer inte att sändas med betalningen över Bitcoin-nätverket.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Ett valfritt meddelande att bifoga betalningsbegäran, vilket visas när begäran öppnas. Obs: Meddelandet kommer inte att sändas med betalningen över NYC3-nätverket.An optional label to associate with the new receiving address.
@@ -2357,7 +2357,7 @@ Notera: Då avgiften beräknas per byte kommer en avgift på 50 satoshi tas ut f
Warning: Invalid NYC3 address
- Varning: Ogiltig Bitcoin-adress
+ Varning: Ogiltig NYC3-adressWarning: Unknown change address
@@ -2400,7 +2400,7 @@ Notera: Då avgiften beräknas per byte kommer en avgift på 50 satoshi tas ut f
The NYC3 address to send the payment to
- Bitcoin-adress att sända betalning till
+ NYC3-adress att sända betalning tillAlt+A
@@ -2447,8 +2447,8 @@ Notera: Då avgiften beräknas per byte kommer en avgift på 50 satoshi tas ut f
Ange en etikett för denna adress för att lägga till den i listan med använda adresser
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Ett meddelande som bifogades bitcoin: -URIn och som lagras med transaktionen som referens. NB: Meddelandet kommer inte att sändas över Bitcoin-nätverket.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Ett meddelande som bifogades bitcoin: -URIn och som lagras med transaktionen som referens. NB: Meddelandet kommer inte att sändas över NYC3-nätverket.Pay To:
@@ -2497,7 +2497,7 @@ Notera: Då avgiften beräknas per byte kommer en avgift på 50 satoshi tas ut f
The NYC3 address to sign the message with
- Bitcoin-adress att signera meddelandet med
+ NYC3-adress att signera meddelandet medChoose previously used address
@@ -2529,7 +2529,7 @@ Notera: Då avgiften beräknas per byte kommer en avgift på 50 satoshi tas ut f
Sign the message to prove you own this NYC3 address
- Signera meddelandet för att bevisa att du äger denna Bitcoin-adress
+ Signera meddelandet för att bevisa att du äger denna NYC3-adressSign &Message
@@ -2553,11 +2553,11 @@ Notera: Då avgiften beräknas per byte kommer en avgift på 50 satoshi tas ut f
The NYC3 address the message was signed with
- Bitcoin-adress som meddelandet signerades med
+ NYC3-adress som meddelandet signerades medVerify the message to ensure it was signed with the specified NYC3 address
- Verifiera meddelandet för att vara säker på att det signerades med angiven Bitcoin-adress
+ Verifiera meddelandet för att vara säker på att det signerades med angiven NYC3-adressVerify &Message
diff --git a/src/qt/locale/nyc3_szl.ts b/src/qt/locale/nyc3_szl.ts
index 4088ef606..74d3dcfc3 100644
--- a/src/qt/locale/nyc3_szl.ts
+++ b/src/qt/locale/nyc3_szl.ts
@@ -66,12 +66,12 @@
Adresy ôdbiyraniŏ
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Tukej sōm adresy Bitcoin na kere posyłŏsz płaty. Dycki wybaduj wielość i adresã ôdbiyrŏcza przed posłaniym mōnet.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Tukej sōm adresy NYC3 na kere posyłŏsz płaty. Dycki wybaduj wielość i adresã ôdbiyrŏcza przed posłaniym mōnet.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Tukej sōm adresy Bitcoin do ôdbiyraniŏ płatōw. Zalycŏ sie używaniŏ nowych adres ôdbiorczych dlŏ kożdyj transakcyje.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Tukej sōm adresy NYC3 do ôdbiyraniŏ płatōw. Zalycŏ sie używaniŏ nowych adres ôdbiorczych dlŏ kożdyj transakcyje.&Copy Address
@@ -339,7 +339,7 @@
Send coins to a NYC3 address
- Poślij mōnety na adresã Bitcoin
+ Poślij mōnety na adresã NYC3Backup wallet to another location
@@ -362,8 +362,8 @@
&Weryfikuj wiadōmość...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -386,12 +386,12 @@
Szyfruj klucze prywatne, kere sōm we twojim portmanyju
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themPodpisz wiadōmości swojōm adresōm coby dowiyść jejich posiadanie
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Zweryfikuj wiadōmość, coby wejzdrzeć sie, iże ôstała podpisanŏ podanōm adresōm Bitcoin.
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Zweryfikuj wiadōmość, coby wejzdrzeć sie, iże ôstała podpisanŏ podanōm adresōm NYC3.&File
@@ -430,8 +430,8 @@
Ôp&cyje piski nakŏzań
- %n active connection(s) to Bitcoin network
- %n aktywne połōnczynie do necu Bitcoin%n aktywnych połōnczyń do necu Bitcoin%n aktywnych skuplowań do necu Bitcoin
+ %n active connection(s) to NYC3 network
+ %n aktywne połōnczynie do necu NYC3%n aktywnych połōnczyń do necu NYC3%n aktywnych skuplowań do necu NYC3Indexing blocks on disk...
@@ -478,7 +478,7 @@
&Adresy posyłaniŏ
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsPokŏż pōmoc %1 coby zobŏczyć wykŏz wszyjskich ôpcyji piski nakŏzań.
@@ -558,8 +558,8 @@
Portmanyj je <b>zaszyfrowany</b> i terŏźnie <b>zaszperowany</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Przitrefiōł sie krytyczny feler. Bitcoin niy poradzi kōntynuować bezpiycznie i ôstanie zawrzity.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Przitrefiōł sie krytyczny feler. NYC3 niy poradzi kōntynuować bezpiycznie i ôstanie zawrzity.
@@ -749,7 +749,7 @@
The entered address "%1" is not a valid NYC3 address.
- Wkludzōnŏ adresa "%1" niyma nŏleżnōm adresōm Bitcoin.
+ Wkludzōnŏ adresa "%1" niyma nŏleżnōm adresōm NYC3.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -841,8 +841,8 @@
Użyj ôbranego folderu datōw
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -853,8 +853,8 @@
Kole %1 GB datōw ôstanie spamiyntane w tym katalogu.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 sebiere i spamiyntŏ kopijõ kety blokōw Bitcoin.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 sebiere i spamiyntŏ kopijõ kety blokōw NYC3.The wallet will also be stored in this directory.
@@ -1042,8 +1042,8 @@
&Wydej niyprzituplowanõ wydŏwkã
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Autōmatycznie ôdewrzij port klijynta Bitcoin na routerze. Ta ôpcyjŏ funguje ino jeźli twōj router podpiyrŏ UPnP i je ôno zapuszczone.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Autōmatycznie ôdewrzij port klijynta NYC3 na routerze. Ta ôpcyjŏ funguje ino jeźli twōj router podpiyrŏ UPnP i je ôno zapuszczone.Map port using &UPnP
@@ -1058,8 +1058,8 @@
Zwōl na skuplowania przichodzōnce
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Skupluj sie z necym Bitcoin bez SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Skupluj sie z necym NYC3 bez SOCKS5 proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -1090,8 +1090,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Skupluj sie z necym Bitcoin ze pōmocōm ôsobnego proxy SOCKS5 dlŏ necu TOR
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Skupluj sie z necym NYC3 ze pōmocōm ôsobnego proxy SOCKS5 dlŏ necu TOR&Window
@@ -1137,7 +1137,7 @@
Formular
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.Wyświytlanŏ informacyjŏ może być niyterŏźnŏ. Twōj portmanyj synchrōnizuje sie autōmatycznie z necym bitcoin zarŏz po tym, jak zrychtowane je skuplowanie, ale proces tyn niy ôstoł jeszcze skōńczōny.
@@ -1219,7 +1219,7 @@
Enter a NYC3 address (e.g. %1)
- Wkludź adresã Bitcoin (bp. %1)
+ Wkludź adresã NYC3 (bp. %1)%1 d
@@ -1438,8 +1438,8 @@
&Etyketa:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Ôpcyjōnalnŏ wiadōmość do prziwstōniŏ do żōndaniŏ płatu, kerŏ bydzie wyświytlanŏ, kej żōndanie ôstanie ôdewrzōne. Napōmniynie: wiadōmość ta niy ôstanie wysłanŏ z płatym w nec Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Ôpcyjōnalnŏ wiadōmość do prziwstōniŏ do żōndaniŏ płatu, kerŏ bydzie wyświytlanŏ, kej żōndanie ôstanie ôdewrzōne. Napōmniynie: wiadōmość ta niy ôstanie wysłanŏ z płatym w nec NYC3.Clear
@@ -1644,7 +1644,7 @@
Warning: Invalid NYC3 address
- Pozōr: niynŏleżnŏ adresa Bitcoin
+ Pozōr: niynŏleżnŏ adresa NYC3Warning: Unknown change address
@@ -1667,7 +1667,7 @@
The NYC3 address to send the payment to
- Adresa Bitcoin, na kerõ chcesz posłać płat
+ Adresa NYC3, na kerõ chcesz posłać płatAlt+A
@@ -1686,8 +1686,8 @@
Wiadōmość:
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Wiadōmość, kerŏ ôstała prziwstōnŏ do URI bitcoin:, kerŏ bydzie przechowowanŏ z transakcyjōm w cylach informacyjnych. Napōmniynie: Ta wiadōmość niy bydzie rozszyrzowanŏ w necu Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Wiadōmość, kerŏ ôstała prziwstōnŏ do URI bitcoin:, kerŏ bydzie przechowowanŏ z transakcyjōm w cylach informacyjnych. Napōmniynie: Ta wiadōmość niy bydzie rozszyrzowanŏ w necu NYC3.
diff --git a/src/qt/locale/nyc3_ta.ts b/src/qt/locale/nyc3_ta.ts
index e1b9efccb..6c7249827 100644
--- a/src/qt/locale/nyc3_ta.ts
+++ b/src/qt/locale/nyc3_ta.ts
@@ -58,12 +58,12 @@
முகவரிகள் பெறப்படுகின்றன
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.இவை பணம் அனுப்புவதற்கு உங்கள் பிட்கின் முகவரிகள். நாணயங்களை அனுப்புவதற்கு முன் எப்பொழுதும் தொகையும் பெறுதலையும் சரிபார்க்கவும்.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- இவை உங்கள் Bitcoin முகவரிகள் பணம் பெறுவதற்கு. ஒவ்வொரு பரிவர்த்தனைக்கும் புதிய பெறுதல் முகவரியைப் பயன்படுத்த பரிந்துரைக்கப்படுகிறது.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ இவை உங்கள் NYC3 முகவரிகள் பணம் பெறுவதற்கு. ஒவ்வொரு பரிவர்த்தனைக்கும் புதிய பெறுதல் முகவரியைப் பயன்படுத்த பரிந்துரைக்கப்படுகிறது.&Copy Address
@@ -330,8 +330,8 @@
&செய்தியை சரிசெய்...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -354,11 +354,11 @@
உங்கள் பணப்பைச் சேர்ந்த தனிப்பட்ட விசைகளை குறியாக்குக
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own themஉங்கள் பிட்டினின் முகவரியுடன் செய்திகளை உங்களிடம் வைத்திருப்பதை நிரூபிக்க
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addressesகுறிப்பிடப்பட்ட விக்கிபீடியா முகவர்களுடன் கையொப்பமிடப்பட்டதை உறுதிப்படுத்த, செய்திகளை சரிபார்க்கவும்
@@ -391,7 +391,7 @@
Open a bitcoin: URI or payment request
- ஒரு Bitcoin திறக்க: URI அல்லது பணம் கோரிக்கை
+ ஒரு NYC3 திறக்க: URI அல்லது பணம் கோரிக்கை&Command-line options
@@ -518,7 +518,7 @@
Wallet குறியாக்கப்பட்டு தற்போது பூட்டப்பட்டுள்ளது
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.Wallet குறியாக்கப்பட்டு தற்போது பூட்டப்பட்டுள்ளது
@@ -753,8 +753,8 @@
தனிப்பயன் தரவு கோப்பகத்தைப் பயன்படுத்தவும்:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3The wallet will also be stored in this directory.
@@ -938,8 +938,8 @@
& உறுதிப்படுத்தப்படாத மாற்றத்தை செலவழிக்கவும்
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- ரூட்டரில் Bitcoin கிளையன்ட் போர்ட் தானாக திறக்க. இது உங்கள் திசைவி UPnP ஐ ஆதரிக்கும் போது மட்டுமே இயங்குகிறது.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ ரூட்டரில் NYC3 கிளையன்ட் போர்ட் தானாக திறக்க. இது உங்கள் திசைவி UPnP ஐ ஆதரிக்கும் போது மட்டுமே இயங்குகிறது.Map port using &UPnP
@@ -954,8 +954,8 @@
Incomin & g இணைப்புகளை அனுமதிக்கவும்
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Bitcoin பிணையத்துடன் SOCKS5 ப்ராக்ஸி மூலம் இணைக்கவும்.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ NYC3 பிணையத்துடன் SOCKS5 ப்ராக்ஸி மூலம் இணைக்கவும்.&Connect through SOCKS5 proxy (default proxy):
@@ -990,7 +990,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.டார் மறைக்கப்பட்ட சேவைகளை தனித்த SOCKS5 ப்ராக்ஸி மூலம் பிட்கோடு நெட்வொர்க்குடன் இணைக்கவும்.
@@ -1097,7 +1097,7 @@
படிவம்
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.காட்டப்படும் தகவல் காலாவதியானதாக இருக்கலாம். ஒரு இணைப்பு நிறுவப்பட்ட பிறகு, உங்கள் பணப்பை தானாக பிட்கோடு நெட்வொர்க்குடன் ஒத்திசைக்கிறது, ஆனால் இந்த செயல்முறை இன்னும் முடிவடையவில்லை.
@@ -1173,7 +1173,7 @@
Cannot start bitcoin: click-to-pay handler
- Bitcoin தொடங்க முடியாது: கிளிக் க்கு ஊதியம் கையாளுதல்
+ NYC3 தொடங்க முடியாது: கிளிக் க்கு ஊதியம் கையாளுதல்URI handling
@@ -1646,8 +1646,8 @@
&செய்தி:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- கோரிக்கையை திறக்கும் போது காட்டப்படும் இது பணம் கோரிக்கை இணைக்க ஒரு விருப்ப செய்தி. குறிப்பு: Bitcoin நெட்வொர்க்கில் பணம் செலுத்தியவுடன் செய்தி அனுப்பப்படாது.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ கோரிக்கையை திறக்கும் போது காட்டப்படும் இது பணம் கோரிக்கை இணைக்க ஒரு விருப்ப செய்தி. குறிப்பு: NYC3 நெட்வொர்க்கில் பணம் செலுத்தியவுடன் செய்தி அனுப்பப்படாது.An optional label to associate with the new receiving address.
@@ -2132,7 +2132,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
bitcoin-coreNYC3
- Bitcoin மையம்
+ NYC3 மையம்Information
diff --git a/src/qt/locale/nyc3_th_TH.ts b/src/qt/locale/nyc3_th_TH.ts
index 8bb1c73e9..830b407bb 100644
--- a/src/qt/locale/nyc3_th_TH.ts
+++ b/src/qt/locale/nyc3_th_TH.ts
@@ -167,7 +167,7 @@
Send coins to a NYC3 address
- ส่ง coins ไปยัง ที่เก็บ Bitcoin
+ ส่ง coins ไปยัง ที่เก็บ NYC3Backup wallet to another location
@@ -190,8 +190,8 @@
&ยืนยันข้อความ...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -214,12 +214,12 @@
เข้ารหัส private keys/ รหัสส่วนตัว สำหรับกระเป๋าเงินของท่าน
- Sign messages with your Bitcoin addresses to prove you own them
- เซ็นชื่อด้วยข้อความ ที่เก็บ Bitcoin เพื่อแสดงว่าท่านเป็นเจ้าของ bitcoin นี้จริง
+ Sign messages with your NYC3 addresses to prove you own them
+ เซ็นชื่อด้วยข้อความ ที่เก็บ NYC3 เพื่อแสดงว่าท่านเป็นเจ้าของ bitcoin นี้จริง
- Verify messages to ensure they were signed with specified Bitcoin addresses
- ตรวจสอบ ข้อความ เพื่อให้แน่ใจว่า การเซ็นต์ชื่อ ด้วยที่เก็บ Bitcoin แล้ว
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ ตรวจสอบ ข้อความ เพื่อให้แน่ใจว่า การเซ็นต์ชื่อ ด้วยที่เก็บ NYC3 แล้ว&File
@@ -258,8 +258,8 @@
&ตัวเลือก Command-line
- %n active connection(s) to Bitcoin network
- %n ช่องการเชื่อมต่อที่ใช้งานได้ เพื่อเชื่อมกับเครือข่าย Bitcoin
+ %n active connection(s) to NYC3 network
+ %n ช่องการเชื่อมต่อที่ใช้งานได้ เพื่อเชื่อมกับเครือข่าย NYC3Indexing blocks on disk...
@@ -302,8 +302,8 @@
ทันสมัย
- Show the %1 help message to get a list with possible Bitcoin command-line options
- แสดง %1 ข้อความช่วยเหลือ เพื่อแสดงรายการ ตัวเลือกที่เป็นไปได้สำหรับ Bitcoin command-line
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ แสดง %1 ข้อความช่วยเหลือ เพื่อแสดงรายการ ตัวเลือกที่เป็นไปได้สำหรับ NYC3 command-line&Window
@@ -523,8 +523,8 @@
ใช้ไดเร็กทอรี่ข้อมูลที่ตั้งค่าเอง:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error: Specified data directory "%1" cannot be created.
@@ -644,16 +644,16 @@
&ใช้เงินทอนที่ยังไม่ยืนยัน
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- เปิด Bitcoin ไคล์เอ็นท์พอร์ต/client port บน router โดยอัตโนมัติ วิธีนี้ใช้ได้เมื่อ router สนับสนุน UPnP และสถานะเปิดใช้งาน
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ เปิด NYC3 ไคล์เอ็นท์พอร์ต/client port บน router โดยอัตโนมัติ วิธีนี้ใช้ได้เมื่อ router สนับสนุน UPnP และสถานะเปิดใช้งานMap port using &UPnPจองพอร์ต โดยใช้ &UPnP
- Connect to the Bitcoin network through a SOCKS5 proxy.
- เชื่อมต่อกับ Bitcoin เน็ตเวิร์ก ผ่านพร็อกซี่แบบ SOCKS5
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ เชื่อมต่อกับ NYC3 เน็ตเวิร์ก ผ่านพร็อกซี่แบบ SOCKS5&Connect through SOCKS5 proxy (default proxy):
@@ -688,8 +688,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- เชื่อมต่อกับ เครือข่าย Bitcoin ผ่านทาง พร้อกซี่ SOCKS5 แยกต่างหาก สำหรับ Tor เซอร์วิส
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ เชื่อมต่อกับ เครือข่าย NYC3 ผ่านทาง พร้อกซี่ SOCKS5 แยกต่างหาก สำหรับ Tor เซอร์วิส&Window
diff --git a/src/qt/locale/nyc3_tr.ts b/src/qt/locale/nyc3_tr.ts
index b2ddef95b..21cf75751 100644
--- a/src/qt/locale/nyc3_tr.ts
+++ b/src/qt/locale/nyc3_tr.ts
@@ -66,12 +66,12 @@
Alım adresleri
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Bunlar ödemeleri göndermek için kullanacağınız Bitcoin adreslerinizdir. Bitcoin yollamadan önce tutarı ve alıcının alım adresini her zaman kontrol ediniz.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Bunlar ödemeleri göndermek için kullanacağınız NYC3 adreslerinizdir. NYC3 yollamadan önce tutarı ve alıcının alım adresini her zaman kontrol ediniz.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Bunlar ödemeleri almak için kullanacağınız Bitcoin adreslerinizdir. Her işlem için yeni bir alım adresi kullanmanız tavsiye edilir.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Bunlar ödemeleri almak için kullanacağınız NYC3 adreslerinizdir. Her işlem için yeni bir alım adresi kullanmanız tavsiye edilir.&Copy Address
@@ -362,8 +362,8 @@
İletiyi &kontrol et...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -386,12 +386,12 @@
Cüzdanınıza ait özel anahtarları şifreleyin
- Sign messages with your Bitcoin addresses to prove you own them
- İletileri adreslerin size ait olduğunu ispatlamak için Bitcoin adresleri ile imzala
+ Sign messages with your NYC3 addresses to prove you own them
+ İletileri adreslerin size ait olduğunu ispatlamak için NYC3 adresleri ile imzala
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Belirtilen Bitcoin adresleri ile imzalandıklarından emin olmak için iletileri kontrol et
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Belirtilen NYC3 adresleri ile imzalandıklarından emin olmak için iletileri kontrol et&File
@@ -430,8 +430,8 @@
&Komut satırı seçenekleri
- %n active connection(s) to Bitcoin network
- Bitcoin şebekesine %n faal bağlantıBitcoin ağına %n etkin bağlantı var
+ %n active connection(s) to NYC3 network
+ NYC3 şebekesine %n faal bağlantıNYC3 ağına %n etkin bağlantı varIndexing blocks on disk...
@@ -474,8 +474,8 @@
Güncel
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Olası Bitcoin komut satırı seçeneklerinin listesini görmek için %1 yardım mesajını göster
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Olası NYC3 komut satırı seçeneklerinin listesini görmek için %1 yardım mesajını gösterdefault wallet
@@ -562,15 +562,15 @@
Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Ölümcül bir hata oluştu. Bitcoin yazılımı artık güvenli bir şekilde çalışmaya devam edemediği için kapatılacaktır.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Ölümcül bir hata oluştu. NYC3 yazılımı artık güvenli bir şekilde çalışmaya devam edemediği için kapatılacaktır.CoinControlDialogCoin Selection
- Bitcoin Seçimi
+ NYC3 SeçimiQuantity:
@@ -753,7 +753,7 @@
The entered address "%1" is not a valid NYC3 address.
- Girilen "%1" adresi geçerli bir Bitcoin adresi değildir.
+ Girilen "%1" adresi geçerli bir NYC3 adresi değildir.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -837,8 +837,8 @@
Özel bir veri klasörü kullan:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Approximately %1 GB of data will be stored in this directory.
@@ -1050,8 +1050,8 @@
Doğrulanmamış para üstünü &harca
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Yönlendiricide Bitcoin istemci portlarını otomatik olarak açar. Bu, sadece yönlendiricinizin UPnP desteği bulunuyorsa ve etkinse çalışabilir.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Yönlendiricide NYC3 istemci portlarını otomatik olarak açar. Bu, sadece yönlendiricinizin UPnP desteği bulunuyorsa ve etkinse çalışabilir.Map port using &UPnP
@@ -1066,8 +1066,8 @@
Gelen bağlantılara izin ver
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Bitcoin ağına bir SOCKS5 vekil sunucusu aracılığıyla bağlan.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ NYC3 ağına bir SOCKS5 vekil sunucusu aracılığıyla bağlan.&Connect through SOCKS5 proxy (default proxy):
@@ -1102,8 +1102,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Bitcoin ağına gizli Tor servisleri için ayrı bir SOCKS5 vekil sunucusu aracılığıyla bağlan.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ NYC3 ağına gizli Tor servisleri için ayrı bir SOCKS5 vekil sunucusu aracılığıyla bağlan.&Window
@@ -1139,7 +1139,7 @@
Choose the default subdivision unit to show in the interface and when sending coins.
- Bitcoin gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz.
+ NYC3 gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz.Whether to show coin control features or not.
@@ -1209,8 +1209,8 @@
Form
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Görüntülenen bilgiler güncel olmayabilir. Bağlantı kurulduğunda cüzdanınız otomatik olarak Bitcoin ağı ile senkronize olur ancak bu işlem henüz tamamlanmamıştır.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Görüntülenen bilgiler güncel olmayabilir. Bağlantı kurulduğunda cüzdanınız otomatik olarak NYC3 ağı ile senkronize olur ancak bu işlem henüz tamamlanmamıştır.Watch-only:
@@ -1285,7 +1285,7 @@
Cannot start bitcoin: click-to-pay handler
- Bitcoin başlatılamadı: tıkla-ve-öde yöneticisi
+ NYC3 başlatılamadı: tıkla-ve-öde yöneticisiURI handling
@@ -1305,7 +1305,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- URI ayrıştırılamıyor! Bunun nedeni geçersiz bir Bitcoin adresi veya hatalı biçimlendirilmiş URI değişkenleri olabilir.
+ URI ayrıştırılamıyor! Bunun nedeni geçersiz bir NYC3 adresi veya hatalı biçimlendirilmiş URI değişkenleri olabilir.Payment request file handling
@@ -1407,7 +1407,7 @@
Enter a NYC3 address (e.g. %1)
- Bir Bitcoin adresi giriniz (mesela %1)
+ Bir NYC3 adresi giriniz (mesela %1)%1 d
@@ -1788,7 +1788,7 @@
WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command.
- UYARI: Bitcoin dolandırıcılarının çok fazla etkin olduğu zamanlarda, dolandırıcılar bazı kullanıcılara buraya komutlar yazmalarını söylerek onların cüzdanlarındaki bitcoinleri çalmışlardır. Bir komutun sonuçlarını tam olarak anlamadan bu konsolu kullanmayın.
+ UYARI: NYC3 dolandırıcılarının çok fazla etkin olduğu zamanlarda, dolandırıcılar bazı kullanıcılara buraya komutlar yazmalarını söylerek onların cüzdanlarındaki bitcoinleri çalmışlardır. Bir komutun sonuçlarını tam olarak anlamadan bu konsolu kullanmayın.Network activity disabled
@@ -1850,8 +1850,8 @@
&İleti:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Talep açıldığında gösterilecek, isteğinize dayalı, ödeme talebi ile ilişkilendirilecek bir ileti. Not: Bu ileti ödeme ile birlikte Bitcoin ağı üzerinden gönderilmeyecektir.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Talep açıldığında gösterilecek, isteğinize dayalı, ödeme talebi ile ilişkilendirilecek bir ileti. Not: Bu ileti ödeme ile birlikte NYC3 ağı üzerinden gönderilmeyecektir.An optional label to associate with the new receiving address.
@@ -2012,7 +2012,7 @@
SendCoinsDialogSend Coins
- Bitcoin yolla
+ NYC3 yollaCoin Control Features
@@ -2196,7 +2196,7 @@
Confirm send coins
- Bitcoin gönderimini onaylayın
+ NYC3 gönderimini onaylayınThe recipient address is not valid. Please recheck.
@@ -2236,7 +2236,7 @@
Warning: Invalid NYC3 address
- Uyarı: geçersiz Bitcoin adresi
+ Uyarı: geçersiz NYC3 adresiWarning: Unknown change address
@@ -2279,7 +2279,7 @@
The NYC3 address to send the payment to
- Ödemenin yollanacağı Bitcoin adresi
+ Ödemenin yollanacağı NYC3 adresiAlt+A
@@ -2326,8 +2326,8 @@
Kullanılmış adres listesine eklemek için bu adrese bir etiket girin
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Referans için bitcoin: URI'siyle iliştirilmiş işlemle birlikte depolanacak bir ileti. Not: Bu mesaj Bitcoin ağı üzerinden gönderilmeyecektir.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Referans için bitcoin: URI'siyle iliştirilmiş işlemle birlikte depolanacak bir ileti. Not: Bu mesaj NYC3 ağı üzerinden gönderilmeyecektir.Pay To:
@@ -2376,7 +2376,7 @@
The NYC3 address to sign the message with
- İletinin imzalanmasında kullanılacak Bitcoin adresi
+ İletinin imzalanmasında kullanılacak NYC3 adresiChoose previously used address
@@ -2408,7 +2408,7 @@
Sign the message to prove you own this NYC3 address
- Bu Bitcoin adresinin sizin olduğunu ispatlamak için iletiyi imzalayın
+ Bu NYC3 adresinin sizin olduğunu ispatlamak için iletiyi imzalayınSign &Message
@@ -2432,11 +2432,11 @@
The NYC3 address the message was signed with
- İletinin imzalanmasında kullanılan Bitcoin adresi
+ İletinin imzalanmasında kullanılan NYC3 adresiVerify the message to ensure it was signed with the specified NYC3 address
- Belirtilen Bitcoin adresi ile imzalandığını doğrulamak için iletiyi kontrol et
+ Belirtilen NYC3 adresi ile imzalandığını doğrulamak için iletiyi kontrol etVerify &Message
@@ -3080,7 +3080,7 @@
NYC3
- Bitcoin Çekirdeği
+ NYC3 ÇekirdeğiThe %s developers
diff --git a/src/qt/locale/nyc3_tr_TR.ts b/src/qt/locale/nyc3_tr_TR.ts
index fafe65790..9238b812a 100644
--- a/src/qt/locale/nyc3_tr_TR.ts
+++ b/src/qt/locale/nyc3_tr_TR.ts
@@ -66,12 +66,12 @@
Alınan Adresler
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Bunlar ödeme göndermek için gereken Bitcoin adreslerinizdir. Para göndermeden önce her zaman miktarı ve alıcı adresi kontrol edin.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Bunlar ödeme göndermek için gereken NYC3 adreslerinizdir. Para göndermeden önce her zaman miktarı ve alıcı adresi kontrol edin.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Bunlar ödeme almak için kullanılacak Bitcoin adreslerinizdir. Her işlem için yeni bir ödeme alma adresi kullanılması tavsiye edilir.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Bunlar ödeme almak için kullanılacak NYC3 adreslerinizdir. Her işlem için yeni bir ödeme alma adresi kullanılması tavsiye edilir.&Copy Address
@@ -287,7 +287,7 @@
Send coins to a NYC3 address
- Bitcoin adresine madeni para gönderin
+ NYC3 adresine madeni para gönderinBackup wallet to another location
@@ -302,8 +302,8 @@
Onay mesajı...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3
@@ -459,7 +459,7 @@
The entered address "%1" is not a valid NYC3 address.
- Girilen adres "%1" Bitcoin adresiyle eşleşmiyor.
+ Girilen adres "%1" NYC3 adresiyle eşleşmiyor.New key generation failed.
@@ -495,8 +495,8 @@
Hoş geldiniz
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3
@@ -628,7 +628,7 @@
Form
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.Gösterilen bilgi geçerli olmayabilir. Bağlantı tekrar sağlandıktan sonra cüzdanınız otomatik olarak senkronize olacaktır. Henüz senkronize olma işlemi tamamlanmadı.
@@ -710,7 +710,7 @@
QObjectEnter a NYC3 address (e.g. %1)
- Bitcoin adresinizi girin (örneğin %1)
+ NYC3 adresinizi girin (örneğin %1)N/A
@@ -1095,7 +1095,7 @@
Warning: Invalid NYC3 address
- Uyarı: Hatalı Bitcoin adresi
+ Uyarı: Hatalı NYC3 adresi(no label)
@@ -1391,7 +1391,7 @@
bitcoin-coreNYC3
- Bitcoin Çekirdeği
+ NYC3 ÇekirdeğiCopyright (C) %i-%i
diff --git a/src/qt/locale/nyc3_uk.ts b/src/qt/locale/nyc3_uk.ts
index c902a541b..7bfc2093e 100644
--- a/src/qt/locale/nyc3_uk.ts
+++ b/src/qt/locale/nyc3_uk.ts
@@ -66,12 +66,12 @@
Адреса отримання
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Це ваші адреси Bitcoin для надсилання платежів. Завжди перевіряйте суму та адресу одержувача перед відправленням монет.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Це ваші адреси NYC3 для надсилання платежів. Завжди перевіряйте суму та адресу одержувача перед відправленням монет.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Це ваші адреси Bitcoin для отримання платежів. Для кожної транзакції рекомендується використовувати нову адресу одержувача.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Це ваші адреси NYC3 для отримання платежів. Для кожної транзакції рекомендується використовувати нову адресу одержувача.&Copy Address
@@ -366,8 +366,8 @@
П&еревірити повідомлення...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
Зашифрувати закриті ключі, що знаходяться у вашому гаманці
- Sign messages with your Bitcoin addresses to prove you own them
- Підтвердіть, що Ви є власником повідомлення підписавши його Вашою Bitcoin-адресою
+ Sign messages with your NYC3 addresses to prove you own them
+ Підтвердіть, що Ви є власником повідомлення підписавши його Вашою NYC3-адресою
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Перевірте повідомлення для впевненості, що воно підписано вказаною Bitcoin-адресою
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Перевірте повідомлення для впевненості, що воно підписано вказаною NYC3-адресою&File
@@ -434,8 +434,8 @@
П&араметри командного рядка
- %n active connection(s) to Bitcoin network
- %n активне з'єднання з мережею Bitcoin%n активні з'єднання з мережею Bitcoin%n активних з'єднань з мережею Bitcoin%n активних з'єднань з мережею Bitcoin
+ %n active connection(s) to NYC3 network
+ %n активне з'єднання з мережею NYC3%n активні з'єднання з мережею NYC3%n активних з'єднань з мережею NYC3%n активних з'єднань з мережею NYC3Indexing blocks on disk...
@@ -486,7 +486,7 @@
&Адреси для отримання
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line optionsПоказати довідку %1 для отримання переліку можливих параметрів командного рядка.
@@ -590,7 +590,7 @@
<b>Зашифрований</b> гаманець <b>заблоковано</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.Сталася фатальна помилка. Гаманець буде закрито.
@@ -777,7 +777,7 @@
The entered address "%1" is not a valid NYC3 address.
- Введена адреса "%1" не є адресою в мережі Bitcoin.
+ Введена адреса "%1" не є адресою в мережі NYC3.Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -869,8 +869,8 @@
Використовувати свій каталог даних:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -881,7 +881,7 @@
Близько %1 Гб даних буде збережено в цьому каталозі.
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1 буде завантажувати та зберігати копію ланцюжка блоків біткінів.
@@ -1086,7 +1086,7 @@
&Витрачати непідтверджену решту
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Автоматично відкривати порт для клієнту біткоін на роутері. Працює лише якщо ваш роутер підтримує UPnP і ця функція увімкнена.
@@ -1102,8 +1102,8 @@
Дозволити вхідні з'єднання
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Підключення до мережі Bitcoin через SOCKS5 проксі.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Підключення до мережі NYC3 через SOCKS5 проксі.&Connect through SOCKS5 proxy (default proxy):
@@ -1138,8 +1138,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Підключатися до мережі Bitcoin через окремий SOCKS5 проксі для прихованих сервісів Tor.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Підключатися до мережі NYC3 через окремий SOCKS5 проксі для прихованих сервісів Tor.&Window
@@ -1249,8 +1249,8 @@
Форма
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Показана інформація вже може бути застарілою. Ваш гаманець буде автоматично синхронізовано з мережею Bitcoin після встановлення підключення, але цей процес ще не завершено.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Показана інформація вже може бути застарілою. Ваш гаманець буде автоматично синхронізовано з мережею NYC3 після встановлення підключення, але цей процес ще не завершено.Watch-only:
@@ -1457,7 +1457,7 @@
Enter a NYC3 address (e.g. %1)
- Введіть адресу Bitcoin (наприклад %1)
+ Введіть адресу NYC3 (наприклад %1)%1 d
@@ -1912,8 +1912,8 @@
&Повідомлення:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Необов'язкове повідомлення на додаток до запиту платежу, котре буде показане під час відкриття запиту. Примітка: Це повідомлення не буде відправлено з платежем через мережу Bitcoin.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Необов'язкове повідомлення на додаток до запиту платежу, котре буде показане під час відкриття запиту. Примітка: Це повідомлення не буде відправлено з платежем через мережу NYC3.An optional label to associate with the new receiving address.
@@ -2385,7 +2385,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address to send the payment to
- Адреса Bitcoin для відправлення платежу
+ Адреса NYC3 для відправлення платежуAlt+A
@@ -2432,8 +2432,8 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Введіть мітку для цієї адреси для додавання її в список використаних адрес
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Повідомлення, що було додане до bitcoin:URI та буде збережено разом з транзакцією для довідки. Примітка: Це повідомлення не буде відправлено в мережу Bitcoin.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Повідомлення, що було додане до bitcoin:URI та буде збережено разом з транзакцією для довідки. Примітка: Це повідомлення не буде відправлено в мережу NYC3.Pay To:
@@ -2482,7 +2482,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address to sign the message with
- Адреса Bitcoin для підпису цього повідомлення
+ Адреса NYC3 для підпису цього повідомленняChoose previously used address
@@ -2538,11 +2538,11 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address the message was signed with
- Адреса Bitcoin, якою було підписано це повідомлення
+ Адреса NYC3, якою було підписано це повідомленняVerify the message to ensure it was signed with the specified NYC3 address
- Перевірте повідомлення для впевненості, що воно підписано вказаною Bitcoin-адресою
+ Перевірте повідомлення для впевненості, що воно підписано вказаною NYC3-адресоюVerify &Message
diff --git a/src/qt/locale/nyc3_uz@Cyrl.ts b/src/qt/locale/nyc3_uz@Cyrl.ts
index f0c5f6749..c21436f21 100644
--- a/src/qt/locale/nyc3_uz@Cyrl.ts
+++ b/src/qt/locale/nyc3_uz@Cyrl.ts
@@ -139,7 +139,7 @@
Send coins to a NYC3 address
- Тангаларни Bitcoin манзилига жўнатиш
+ Тангаларни NYC3 манзилига жўнатишBackup wallet to another location
@@ -162,8 +162,8 @@
Хабарни &тасдиқлаш...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -186,12 +186,12 @@
Ҳамёнингизга тегишли махфий калитларни кодлаш
- Sign messages with your Bitcoin addresses to prove you own them
- Bitcoin манзилидан унинг эгаси эканлигингизни исботлаш учун хабарлар ёзинг
+ Sign messages with your NYC3 addresses to prove you own them
+ NYC3 манзилидан унинг эгаси эканлигингизни исботлаш учун хабарлар ёзинг
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Хабарларни махсус Bitcoin манзилларингиз билан ёзилганлигига ишонч ҳосил қилиш учун уларни тасдиқланг
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Хабарларни махсус NYC3 манзилларингиз билан ёзилганлигига ишонч ҳосил қилиш учун уларни тасдиқланг&File
@@ -223,15 +223,15 @@
Open a bitcoin: URI or payment request
- Bitcoin’ни очиш: URI ёки тўлов сўрови
+ NYC3’ни очиш: URI ёки тўлов сўрови&Command-line options&Буйруқлар сатри мосламалари
- %n active connection(s) to Bitcoin network
- %n та Bitcoin тармоғига фаол уланиш мавжуд
+ %n active connection(s) to NYC3 network
+ %n та NYC3 тармоғига фаол уланиш мавжуд%1 behind
@@ -425,8 +425,8 @@
Бошқа маълумотлар директориясида фойдаланинг:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error: Specified data directory "%1" cannot be created.
@@ -581,8 +581,8 @@
Шакл
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Кўрсатилган маълумот эскирган бўлиши мумкин. Ҳамёнингиз алоқа ўрнатилгандан сўнг Bitcoin тармоқ билан автоматик тарзда синхронланади, аммо жараён ҳалигача тугалланмади.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Кўрсатилган маълумот эскирган бўлиши мумкин. Ҳамёнингиз алоқа ўрнатилгандан сўнг NYC3 тармоқ билан автоматик тарзда синхронланади, аммо жараён ҳалигача тугалланмади.Watch-only:
@@ -663,7 +663,7 @@
Enter a NYC3 address (e.g. %1)
- Bitcoin манзилини киритинг (масалан. %1)
+ NYC3 манзилини киритинг (масалан. %1)%1 m
diff --git a/src/qt/locale/nyc3_vi.ts b/src/qt/locale/nyc3_vi.ts
index dc5ea6824..e9c1cde14 100644
--- a/src/qt/locale/nyc3_vi.ts
+++ b/src/qt/locale/nyc3_vi.ts
@@ -66,12 +66,12 @@
Địa chỉ đang nhận
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.Đây là những địa chỉ đang thực hiện thanh toán. Luôn kiểm tra số lượng và địa chỉ nhận trước khi gửi coins.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Đây là địa chỉ Bitcoin của bạn để nhận thanh toán. Khuyến cáo nên sử dụng địa chỉ mới cho mỗi giao dịch.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Đây là địa chỉ NYC3 của bạn để nhận thanh toán. Khuyến cáo nên sử dụng địa chỉ mới cho mỗi giao dịch.&Copy Address
@@ -339,7 +339,7 @@
Send coins to a NYC3 address
- Gửi coin đến một địa chỉ Bitcoin
+ Gửi coin đến một địa chỉ NYC3Backup wallet to another location
@@ -362,8 +362,8 @@
&Lời nhắn xác nhận...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -386,12 +386,12 @@
Mã hóa private key thuộc về ví của bạn
- Sign messages with your Bitcoin addresses to prove you own them
- Đăng ký lời nhắn với địa chỉ Bitcoin của bạn để chứng minh quyền sở hữu chúng
+ Sign messages with your NYC3 addresses to prove you own them
+ Đăng ký lời nhắn với địa chỉ NYC3 của bạn để chứng minh quyền sở hữu chúng
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Xác minh lời nhắn để chắc chắn đã được đăng ký với địa chỉ Bitcoin xác định
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Xác minh lời nhắn để chắc chắn đã được đăng ký với địa chỉ NYC3 xác định&File
@@ -430,8 +430,8 @@
&Tùy chỉnh Command-line
- %n active connection(s) to Bitcoin network
- %n kết nối đến Bitcoin network
+ %n active connection(s) to NYC3 network
+ %n kết nối đến NYC3 networkIndexing blocks on disk...
@@ -498,8 +498,8 @@
Đông ví
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Hiển thị %1 tin nhắn hỗ trợ để nhận được danh sách Bitcoin command-line khả dụng
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Hiển thị %1 tin nhắn hỗ trợ để nhận được danh sách NYC3 command-line khả dụngdefault wallet
@@ -580,8 +580,8 @@
Ví thì <b>encrypted</b> và hiện tại <b>locked</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- Một lỗi nghiêm trọng vừa xảy ra. Bitcoin có thể không còn tiếp tục an toàn và sẽ bị bỏ.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ Một lỗi nghiêm trọng vừa xảy ra. NYC3 có thể không còn tiếp tục an toàn và sẽ bị bỏ.
@@ -859,8 +859,8 @@
Sử dụng custom danh mục data:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -871,8 +871,8 @@
Gần đúng %1 GB of data sẽ được lưu giữ trong danh mục này.
- %1 will download and store a copy of the Bitcoin block chain.
- %1 sẽ download và lưu trữ một bản copy của Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 sẽ download và lưu trữ một bản copy của NYC3 block chain.The wallet will also be stored in this directory.
@@ -1052,16 +1052,16 @@
&Spend unconfirmed change
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.Map port using &UPnPMap port using &UPnP
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Kết nối đến Bitcoin network qua một SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Kết nối đến NYC3 network qua một SOCKS5 proxy.&Connect through SOCKS5 proxy (default proxy):
@@ -1096,8 +1096,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- Kết nối đến Bitcoin network qua một nhánh rời SOCKS5 proxy của Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ Kết nối đến NYC3 network qua một nhánh rời SOCKS5 proxy của Tor hidden services.&Window
@@ -1199,8 +1199,8 @@
Form
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- Thông tin được hiển thị có thể đã lỗi thời. Cái wallet tự động đồng bộ với Bitcoin network sau một connection được thiết lập, nhưng quá trình này vẫn chưa completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ Thông tin được hiển thị có thể đã lỗi thời. Cái wallet tự động đồng bộ với NYC3 network sau một connection được thiết lập, nhưng quá trình này vẫn chưa completed yet.Watch-only:
@@ -1804,8 +1804,8 @@
&Message:
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- Một optional lời nhắn để đính kèm đến payment request, cái mà sẽ được hiển thị khi mà request đang mở. Lưu ý: Tin nhắn này sẽ không được gửi với payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ Một optional lời nhắn để đính kèm đến payment request, cái mà sẽ được hiển thị khi mà request đang mở. Lưu ý: Tin nhắn này sẽ không được gửi với payment over the NYC3 network.An optional label to associate with the new receiving address.
@@ -2268,8 +2268,8 @@
Nhập một label cho cái address này để thêm vào danh sách địa chỉ đã sử dụng
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- Một tin nhắn được đính kèm với số bitcoin: URI mà sẽ được lưu giữ với transaction dành cho tài liệu tham khảo. Lưu ý: Tin nhắn này sẽ không được gửi thông qua Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ Một tin nhắn được đính kèm với số bitcoin: URI mà sẽ được lưu giữ với transaction dành cho tài liệu tham khảo. Lưu ý: Tin nhắn này sẽ không được gửi thông qua NYC3 network.Pay To:
diff --git a/src/qt/locale/nyc3_vi_VN.ts b/src/qt/locale/nyc3_vi_VN.ts
index fe3e57001..3262ca2bc 100644
--- a/src/qt/locale/nyc3_vi_VN.ts
+++ b/src/qt/locale/nyc3_vi_VN.ts
@@ -62,12 +62,12 @@
Địa chỉ nhận
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- Đây là các địa chỉ Bitcoin để gửi bạn gửi tiền. Trước khi gửi bạn nên kiểm tra lại số tiền bạn muốn gửi và địa chỉ bitcoin của người nhận.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ Đây là các địa chỉ NYC3 để gửi bạn gửi tiền. Trước khi gửi bạn nên kiểm tra lại số tiền bạn muốn gửi và địa chỉ bitcoin của người nhận.
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- Đây là các địa chỉ Bitcoin để bạn nhận tiền. Với mỗi giao dịch, bạn nên dùng một địa chỉ Bitcoin mới để nhận tiền.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ Đây là các địa chỉ NYC3 để bạn nhận tiền. Với mỗi giao dịch, bạn nên dùng một địa chỉ NYC3 mới để nhận tiền.&Copy Address
@@ -320,7 +320,7 @@ Ví của bạn chưa được mã hóa.
Send coins to a NYC3 address
- Gửi coins đến tài khoản Bitcoin
+ Gửi coins đến tài khoản NYC3Backup wallet to another location
@@ -343,8 +343,8 @@ Ví của bạn chưa được mã hóa.
&Tin nhắn xác thực
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -367,12 +367,12 @@ Ví của bạn chưa được mã hóa.
Mã hoá các khoá bí mật trong Ví của bạn.
- Sign messages with your Bitcoin addresses to prove you own them
- Dùng địa chỉ Bitcoin của bạn ký các tin nhắn để xác minh những nội dung tin nhắn đó là của bạn.
+ Sign messages with your NYC3 addresses to prove you own them
+ Dùng địa chỉ NYC3 của bạn ký các tin nhắn để xác minh những nội dung tin nhắn đó là của bạn.
- Verify messages to ensure they were signed with specified Bitcoin addresses
- Kiểm tra các tin nhắn để chắc chắn rằng chúng được ký bằng các địa chỉ Bitcoin xác định.
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ Kiểm tra các tin nhắn để chắc chắn rằng chúng được ký bằng các địa chỉ NYC3 xác định.&File
@@ -392,7 +392,7 @@ Ví của bạn chưa được mã hóa.
Request payments (generates QR codes and bitcoin: URIs)
- Yêu cầu thanh toán(tạo mã QR và địa chỉ Bitcoin: URLs)
+ Yêu cầu thanh toán(tạo mã QR và địa chỉ NYC3: URLs)Show the list of used sending addresses and labels
@@ -411,8 +411,8 @@ Ví của bạn chưa được mã hóa.
7Tùy chọn dòng lệnh
- %n active connection(s) to Bitcoin network
- %n liên kết hoạt động với mạng lưới Bitcoin
+ %n active connection(s) to NYC3 network
+ %n liên kết hoạt động với mạng lưới NYC3Indexing blocks on disk...
@@ -455,8 +455,8 @@ Ví của bạn chưa được mã hóa.
Đã cập nhật
- Show the %1 help message to get a list with possible Bitcoin command-line options
- Hiển thị tin nhắn trợ giúp %1 để có được danh sách với các tùy chọn dòng lệnh Bitcoin.
+ Show the %1 help message to get a list with possible NYC3 command-line options
+ Hiển thị tin nhắn trợ giúp %1 để có được danh sách với các tùy chọn dòng lệnh NYC3.Connecting to peers...
@@ -620,8 +620,8 @@ Ví của bạn chưa được mã hóa.
Sử dụng vị trí dữ liệu mặc định
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -669,8 +669,8 @@ Ví của bạn chưa được mã hóa.
Ví
- Connect to the Bitcoin network through a SOCKS5 proxy.
- Kết nối đến máy chủ Bitcoin thông qua SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ Kết nối đến máy chủ NYC3 thông qua SOCKS5 proxy.Proxy &IP:
diff --git a/src/qt/locale/nyc3_zh.ts b/src/qt/locale/nyc3_zh.ts
index 7a46fcd18..ccf8ff70b 100644
--- a/src/qt/locale/nyc3_zh.ts
+++ b/src/qt/locale/nyc3_zh.ts
@@ -42,11 +42,11 @@
接收地址
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.这些是你的比特币支付地址。在发送之前,一定要核对金额和接收地址。
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.这些是您的比特币接收地址。建议每个交易使用一个新的接收地址。
@@ -282,7 +282,7 @@
&验证消息...
- Bitcoin
+ NYC3比特币
@@ -306,11 +306,11 @@
加密您的钱包私钥
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own them用您的比特币地址签名信息,以证明拥有它们
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addresses验证消息,确保它们是用指定的比特币地址签名的
@@ -346,7 +346,7 @@
&命令行选项
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network%n 活动的比特币网络连接
@@ -386,7 +386,7 @@
&接受地址
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line options显示%1帮助消息以获得可能包含Bitcoin命令行选项的列表
@@ -442,7 +442,7 @@
钱包是<b>加密的</b>,目前<b>已锁定</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.发生了致命错误。比特币无法继续安全运行,将退出。
@@ -529,7 +529,7 @@
Intro
- Bitcoin
+ NYC3比特币
@@ -765,7 +765,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
输入此地址的标签,将其添加到使用的地址列表中
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.附在比特币上的消息:URI将与交易一起存储,供参考。注意:此信息不会通过比特币网络发送。
diff --git a/src/qt/locale/nyc3_zh_CN.ts b/src/qt/locale/nyc3_zh_CN.ts
index 9b0b0bc74..f6994e50c 100644
--- a/src/qt/locale/nyc3_zh_CN.ts
+++ b/src/qt/locale/nyc3_zh_CN.ts
@@ -66,11 +66,11 @@
收款地址
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.您可以给这些比特币地址付款。在付款之前,务必要检查金额和收款地址是否正确。
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.您可以用这些比特币地址收款。建议在每次交易时,都使用一个新的收款地址。
@@ -366,7 +366,7 @@
验证消息(&V)...
- Bitcoin
+ NYC3比特币
@@ -390,11 +390,11 @@
对钱包中的私钥加密
- Sign messages with your Bitcoin addresses to prove you own them
+ Sign messages with your NYC3 addresses to prove you own them用比特币地址关联的私钥为消息签名,以证明您拥有这个比特币地址
- Verify messages to ensure they were signed with specified Bitcoin addresses
+ Verify messages to ensure they were signed with specified NYC3 addresses校验消息,确保该消息是由指定的比特币地址所有者签名的
@@ -434,7 +434,7 @@
命令行选项(&C)
- %n active connection(s) to Bitcoin network
+ %n active connection(s) to NYC3 network%n 条到比特币网络的活动连接
@@ -502,7 +502,7 @@
关闭钱包
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line options显示 %1 帮助信息,获取可用命令行选项列表
@@ -613,7 +613,7 @@
钱包已被<b>加密</b>,当前为<b>锁定</b>状态
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.发生严重错误。客户端无法安全地继续运行,即将退出。
@@ -896,7 +896,7 @@
使用自定义的数据目录:
- Bitcoin
+ NYC3比特币
@@ -908,7 +908,7 @@
会在此目录中存储约 %1 GB 的数据。
- %1 will download and store a copy of the Bitcoin block chain.
+ %1 will download and store a copy of the NYC3 block chain.%1 将会下载并存储比特币区块链。
@@ -1125,7 +1125,7 @@
动用尚未确认的找零资金(&S)
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.自动在路由器中打开比特币端口。只有当您的路由器开启了 UPnP 选项时此功能才有效。
@@ -1141,7 +1141,7 @@
允许流入连接(&G)
- Connect to the Bitcoin network through a SOCKS5 proxy.
+ Connect to the NYC3 network through a SOCKS5 proxy.通过 SOCKS5 代理连接比特币网络。
@@ -1177,7 +1177,7 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.在 Tor 匿名网络下通过不同的 SOCKS5 代理连接比特币网络
@@ -1288,7 +1288,7 @@
表单
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.现在显示的消息可能是过期的。在连接上比特币网络节点后,您的钱包将自动与网络同步,但是这个过程还没有完成。
@@ -1942,7 +1942,7 @@
消息(&M):
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.可在付款请求上备注一条信息,在打开付款请求时可以看到。注意:该消息不是通过比特币网络传送。
@@ -2462,7 +2462,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
请为此地址输入一个标签以将它加入用过的地址列表
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.bitcoin:URI 附带的备注信息,将会和交易一起存储,备查。 注意:该消息不会通过比特币网络传输。
diff --git a/src/qt/locale/nyc3_zh_HK.ts b/src/qt/locale/nyc3_zh_HK.ts
index 162016aba..fc6683009 100644
--- a/src/qt/locale/nyc3_zh_HK.ts
+++ b/src/qt/locale/nyc3_zh_HK.ts
@@ -62,12 +62,12 @@
收款地址
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- 這些是你要付款過去的 Bitcoin 位址。在付款之前,務必要檢查金額和收款位址是否正確。
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ 這些是你要付款過去的 NYC3 位址。在付款之前,務必要檢查金額和收款位址是否正確。
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- 這些是你用來收款的 Bitcoin 位址。建議在每次交易時,都使用一個新的收款位址。
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ 這些是你用來收款的 NYC3 位址。建議在每次交易時,都使用一個新的收款位址。&Copy Address
@@ -169,7 +169,7 @@
Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>!
- 警告: 如果你將錢包加密後又忘記密碼,你就會<b>失去所有 Bitcoin 了</b>!
+ 警告: 如果你將錢包加密後又忘記密碼,你就會<b>失去所有 NYC3 了</b>!Are you sure you wish to encrypt your wallet?
@@ -307,7 +307,7 @@
Send coins to a NYC3 address
- 付款至一個 Bitcoin 位址
+ 付款至一個 NYC3 位址Backup wallet to another location
@@ -330,8 +330,8 @@
驗證訊息... &V
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -407,8 +407,8 @@
Intro
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3Error
@@ -449,7 +449,7 @@
QObjectEnter a NYC3 address (e.g. %1)
- 輸入一個 Bitcoin 位址 (例如 %1)
+ 輸入一個 NYC3 位址 (例如 %1)%1 d
diff --git a/src/qt/locale/nyc3_zh_TW.ts b/src/qt/locale/nyc3_zh_TW.ts
index 46985fd6a..3009a9e41 100644
--- a/src/qt/locale/nyc3_zh_TW.ts
+++ b/src/qt/locale/nyc3_zh_TW.ts
@@ -66,12 +66,12 @@
收款位址
- These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins.
- 這些是你要付款過去的 Bitcoin 位址。在付錢之前,務必要檢查金額和收款位址是否正確。
+ These are your NYC3 addresses for sending payments. Always check the amount and the receiving address before sending coins.
+ 這些是你要付款過去的 NYC3 位址。在付錢之前,務必要檢查金額和收款位址是否正確。
- These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
- 這些是你用來收款的 Bitcoin 位址。建議在每次交易時,都使用一個新的收款位址。
+ These are your NYC3 addresses for receiving payments. It is recommended to use a new receiving address for each transaction.
+ 這些是你用來收款的 NYC3 位址。建議在每次交易時,都使用一個新的收款位址。&Copy Address
@@ -177,7 +177,7 @@
Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>!
- 警告: 如果把錢包加密後又忘記密碼,你就會從此<b>失去其中所有的 Bitcoin 了</b>!
+ 警告: 如果把錢包加密後又忘記密碼,你就會從此<b>失去其中所有的 NYC3 了</b>!Are you sure you wish to encrypt your wallet?
@@ -343,7 +343,7 @@
Send coins to a NYC3 address
- 付錢給一個 Bitcoin 位址
+ 付錢給一個 NYC3 位址Backup wallet to another location
@@ -366,8 +366,8 @@
驗證訊息(&V)...
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3&Send
@@ -390,12 +390,12 @@
把錢包中的密鑰加密
- Sign messages with your Bitcoin addresses to prove you own them
- 用 Bitcoin 位址簽署訊息來證明位址是你的
+ Sign messages with your NYC3 addresses to prove you own them
+ 用 NYC3 位址簽署訊息來證明位址是你的
- Verify messages to ensure they were signed with specified Bitcoin addresses
- 驗證訊息是用來確定訊息是用指定的 Bitcoin 位址簽署的
+ Verify messages to ensure they were signed with specified NYC3 addresses
+ 驗證訊息是用來確定訊息是用指定的 NYC3 位址簽署的&File
@@ -434,8 +434,8 @@
命令列選項(&C)
- %n active connection(s) to Bitcoin network
- %n 個運作中的 Bitcoin 網路連線
+ %n active connection(s) to NYC3 network
+ %n 個運作中的 NYC3 網路連線Indexing blocks on disk...
@@ -502,7 +502,7 @@
關上錢包
- Show the %1 help message to get a list with possible Bitcoin command-line options
+ Show the %1 help message to get a list with possible NYC3 command-line options顯示 %1 的說明訊息,來取得可用命令列選項的列表
@@ -598,8 +598,8 @@
錢包<b>已加密</b>並且<b>上鎖中</b>
- A fatal error occurred. Bitcoin can no longer continue safely and will quit.
- 發生了致命的錯誤。Bitcoin 軟體沒辦法再繼續安全執行,只好結束。
+ A fatal error occurred. NYC3 can no longer continue safely and will quit.
+ 發生了致命的錯誤。NYC3 軟體沒辦法再繼續安全執行,只好結束。
@@ -789,7 +789,7 @@
The entered address "%1" is not a valid NYC3 address.
- 輸入的位址 %1 並不是有效的 Bitcoin 位址。
+ 輸入的位址 %1 並不是有效的 NYC3 位址。Address "%1" already exists as a receiving address with label "%2" and so cannot be added as a sending address.
@@ -885,8 +885,8 @@
使用自訂的資料目錄:
- Bitcoin
- Bitcoin
+ NYC3
+ NYC3At least %1 GB of data will be stored in this directory, and it will grow over time.
@@ -897,8 +897,8 @@
在這個目錄中大約會存放 %1 GB 的資料。
- %1 will download and store a copy of the Bitcoin block chain.
- %1 會下載 Bitcoin 區塊鏈並且儲存一份副本。
+ %1 will download and store a copy of the NYC3 block chain.
+ %1 會下載 NYC3 區塊鏈並且儲存一份副本。The wallet will also be stored in this directory.
@@ -1031,7 +1031,7 @@
Use separate SOCKS&5 proxy to reach peers via Tor hidden services:
- 透過另外的 SOCKS&5 代理伺服器來連線到 Bitcoin 網路中的 Tor 隱藏服務:
+ 透過另外的 SOCKS&5 代理伺服器來連線到 NYC3 網路中的 Tor 隱藏服務:Hide the icon from the system tray.
@@ -1110,8 +1110,8 @@
可以花還沒確認的零錢(&S)
- Automatically open the Bitcoin client port on the router. This only works when your router supports UPnP and it is enabled.
- 自動在路由器上開放 Bitcoin 的客戶端通訊埠。只有在你的路由器支援且開啓「通用即插即用」協定(UPnP)時才有作用。
+ Automatically open the NYC3 client port on the router. This only works when your router supports UPnP and it is enabled.
+ 自動在路由器上開放 NYC3 的客戶端通訊埠。只有在你的路由器支援且開啓「通用即插即用」協定(UPnP)時才有作用。Map port using &UPnP
@@ -1126,8 +1126,8 @@
接受外來連線(&G)
- Connect to the Bitcoin network through a SOCKS5 proxy.
- 透過 SOCKS5 代理伺服器來連線到 Bitcoin 網路。
+ Connect to the NYC3 network through a SOCKS5 proxy.
+ 透過 SOCKS5 代理伺服器來連線到 NYC3 網路。&Connect through SOCKS5 proxy (default proxy):
@@ -1162,8 +1162,8 @@
Tor
- Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.
- 透過另外的 SOCKS5 代理伺服器來連線到 Bitcoin 網路中的 Tor 隱藏服務。
+ Connect to the NYC3 network through a separate SOCKS5 proxy for Tor hidden services.
+ 透過另外的 SOCKS5 代理伺服器來連線到 NYC3 網路中的 Tor 隱藏服務。&Window
@@ -1269,8 +1269,8 @@
表單
- The displayed information may be out of date. Your wallet automatically synchronizes with the Bitcoin network after a connection is established, but this process has not completed yet.
- 顯示的資訊可能是過期的。跟 Bitcoin 網路的連線建立後,你的錢包會自動和網路同步,但是這個步驟還沒完成。
+ The displayed information may be out of date. Your wallet automatically synchronizes with the NYC3 network after a connection is established, but this process has not completed yet.
+ 顯示的資訊可能是過期的。跟 NYC3 網路的連線建立後,你的錢包會自動和網路同步,但是這個步驟還沒完成。Watch-only:
@@ -1365,7 +1365,7 @@
URI cannot be parsed! This can be caused by an invalid NYC3 address or malformed URI parameters.
- 沒辦法解析 URI 位址!可能是因為 Bitcoin 位址無效,或是 URI 參數格式錯誤。
+ 沒辦法解析 URI 位址!可能是因為 NYC3 位址無效,或是 URI 參數格式錯誤。Payment request file handling
@@ -1467,7 +1467,7 @@
Enter a NYC3 address (e.g. %1)
- 輸入 Bitcoin 位址 (比如說 %1)
+ 輸入 NYC3 位址 (比如說 %1)%1 d
@@ -1910,8 +1910,8 @@
訊息(&M):
- An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Bitcoin network.
- 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到 Bitcoin 網路上。
+ An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the NYC3 network.
+ 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到 NYC3 網路上。An optional label to associate with the new receiving address.
@@ -2332,7 +2332,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Warning: Invalid NYC3 address
- 警告: Bitcoin 位址無效
+ 警告: NYC3 位址無效Warning: Unknown change address
@@ -2375,7 +2375,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address to send the payment to
- 接收付款的 Bitcoin 位址
+ 接收付款的 NYC3 位址Alt+A
@@ -2422,8 +2422,8 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
請輸入這個位址的標記,來把它加進去已使用過位址的清單。
- A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Bitcoin network.
- 附加在 Bitcoin 付款協議的資源識別碼(URI)中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到 Bitcoin 網路上。
+ A message that was attached to the bitcoin: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the NYC3 network.
+ 附加在 NYC3 付款協議的資源識別碼(URI)中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到 NYC3 網路上。Pay To:
@@ -2472,7 +2472,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address to sign the message with
- 用來簽署訊息的 Bitcoin 位址
+ 用來簽署訊息的 NYC3 位址Choose previously used address
@@ -2504,7 +2504,7 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
Sign the message to prove you own this NYC3 address
- 簽署這個訊息來證明這個 Bitcoin 位址是你的
+ 簽署這個訊息來證明這個 NYC3 位址是你的Sign &Message
@@ -2528,11 +2528,11 @@ Note: Since the fee is calculated on a per-byte basis, a fee of "100 satoshis p
The NYC3 address the message was signed with
- 簽署這個訊息的 Bitcoin 位址
+ 簽署這個訊息的 NYC3 位址Verify the message to ensure it was signed with the specified NYC3 address
- 驗證這個訊息來確定是用指定的 Bitcoin 位址簽署的
+ 驗證這個訊息來確定是用指定的 NYC3 位址簽署的Verify &Message
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp
index 4e65b423e..56f7f9b5f 100644
--- a/src/rpc/mining.cpp
+++ b/src/rpc/mining.cpp
@@ -444,10 +444,10 @@ static UniValue getblocktemplate(const JSONRPCRequest& request)
throw JSONRPCError(RPC_CLIENT_P2P_DISABLED, "Error: Peer-to-peer functionality missing or disabled");
if (g_connman->GetNodeCount(CConnman::CONNECTIONS_ALL) == 0)
- throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Bitcoin is not connected!");
+ throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "NYC3 is not connected!");
if (IsInitialBlockDownload())
- throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Bitcoin is downloading blocks...");
+ throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "NYC3 is downloading blocks...");
static unsigned int nTransactionsUpdatedLast;
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp
index 8cffee71b..c3d367148 100644
--- a/src/rpc/rawtransaction.cpp
+++ b/src/rpc/rawtransaction.cpp
@@ -1,5 +1,5 @@
// Copyright (c) 2010 Satoshi Nakamoto
-// Copyright (c) 2009-2019 The Bitcoin Core developers
+// Copyright (c) 2009-2019 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
@@ -1185,7 +1185,7 @@ UniValue decodepsbt(const JSONRPCRequest& request)
if (request.fHelp || request.params.size() != 1)
throw std::runtime_error(
RPCHelpMan{"decodepsbt",
- "\nReturn a JSON object representing the serialized, base64-encoded partially signed Bitcoin transaction.\n",
+ "\nReturn a JSON object representing the serialized, base64-encoded partially signed NYC3 transaction.\n",
{
{"psbt", RPCArg::Type::STR, RPCArg::Optional::NO, "The PSBT base64 string"},
},
@@ -1460,7 +1460,7 @@ UniValue combinepsbt(const JSONRPCRequest& request)
if (request.fHelp || request.params.size() != 1)
throw std::runtime_error(
RPCHelpMan{"combinepsbt",
- "\nCombine multiple partially signed Bitcoin transactions into one transaction.\n"
+ "\nCombine multiple partially signed NYC3 transactions into one transaction.\n"
"Implements the Combiner role.\n",
{
{"txs", RPCArg::Type::ARR, RPCArg::Optional::NO, "A json array of base64 strings of partially signed transactions",
diff --git a/src/rpc/rawtransaction.h b/src/rpc/rawtransaction.h
index 52d701d1c..1c6133d99 100644
--- a/src/rpc/rawtransaction.h
+++ b/src/rpc/rawtransaction.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2017-2018 The Bitcoin Core developers
+// Copyright (c) 2017-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp
index 6ebde86b5..6b85f4098 100644
--- a/src/rpc/server.cpp
+++ b/src/rpc/server.cpp
@@ -256,7 +256,7 @@ UniValue stop(const JSONRPCRequest& jsonRequest)
if (jsonRequest.fHelp || jsonRequest.params.size() > 1)
throw std::runtime_error(
RPCHelpMan{"stop",
- "\nStop Bitcoin server.",
+ "\nStop NYC3 server.",
{},
RPCResults{},
RPCExamples{""},
@@ -267,7 +267,7 @@ UniValue stop(const JSONRPCRequest& jsonRequest)
if (jsonRequest.params[0].isNum()) {
MilliSleep(jsonRequest.params[0].get_int());
}
- return "Bitcoin server stopping";
+ return "NYC3 server stopping";
}
static UniValue uptime(const JSONRPCRequest& jsonRequest)
diff --git a/src/rpc/server.h b/src/rpc/server.h
index 2d62a76f3..48aadacf6 100644
--- a/src/rpc/server.h
+++ b/src/rpc/server.h
@@ -1,5 +1,5 @@
// Copyright (c) 2010 Satoshi Nakamoto
-// Copyright (c) 2009-2018 The Bitcoin Core developers
+// Copyright (c) 2009-2018 The NYC3 Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
@@ -138,7 +138,7 @@ public:
};
/**
- * Bitcoin RPC command dispatcher.
+ * NYC3 RPC command dispatcher.
*/
class CRPCTable
{